Skip to content

v2.9.5

Compare
Choose a tag to compare
@graphieros graphieros released this 31 May 17:48
· 2 commits to master since this release

VueUiTable

  • Use VueUiXy and VueUiDonut as chart components instead of old built-in charts
image image image
  • Config changes:
const vue_ui_table = ref({
    //...
    style: {
        chart: {
            layout: {
                line: {
                    smooth: true, // new
                    useArea: false, // new
                    selector: {
                        stroke: '#ccc', // Deprecated
                        strokeWidth: 1, // Deprecated
                        strokeDasharray: 5 // Deprecated
                    }
                },
            }
        }
    },
})