Skip to content

v2.4.25

Compare
Choose a tag to compare
@graphieros graphieros released this 06 Dec 16:12
· 747 commits to master since this release

VueUiCanvas : custom scales

  • Set a custom scale in non stack mode (default) through the following new config attributes:
style.chart.scale.min: number | null; // default: null
style.chart.scale.max: number | null; // default: null
  • Set custom scales on each dataset item (applied when stack mode is true), through the following new dataset attributes:
scaleMin: number | null;
scaleMax: number | null;
  • Show vertical lines at same index as time labels on large datasets

Docs are up to date.