VueUiXy
It is now possible to display individual y axis scales for multiple series.
- Config: new attributes added in config.chart.grid.labels:
yAxis: {
commonScaleSteps: number; (default: 10)
useIndividualScale: boolean; (default: false)
labelWidth: number; (default: 40) // sets the width for each scale strip
}
- Dataset: additional optional attributes can be passed to datapoint objects:
{
...,
scaleSteps: number; // if not used, commonScaleSteps will be applied
scaleLabel: string; // if used, will be placed next to the series' name on the scale strip
}
Many thanks to @focussing who inspired this improvement.