Skip to content

v2.4.62

Compare
Choose a tag to compare
@graphieros graphieros released this 02 Jan 05:06
· 100 commits to master since this release

VueUiSparkline

  • Add scaleMin and scaleMax config attributes:
config.style.scaleMin: number | null; // default: null
config.style.scaleMax: number | null; // default: null

This comes handy when stacking sparklines for different series where comparison is required.

  • Add padding config attributes:
config.style.padding: {
  top: number;
  right: number;
  bottom: number;
  left: number;
}