github graphieros/vue-data-ui v2.1.52

latest releases: v3.1.7, v3.1.6, v3.1.5...
16 months ago

VueUiXy

It is now possible to display individual y axis scales for multiple series.

  1. 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
}
  1. 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
}

Example in the docs

Many thanks to @focussing who inspired this improvement.

Don't miss a new vue-data-ui release

NewReleases is sending notifications on new releases.