VueUiXy
:
Added new showSerieName
dataset option to display the serie name for line and plot types, either at the start
or end
of the dataset.
Here is a reminder of all dataset options :
{
name: string; // recommended
series: number[]; // required
type: "bar" | "line" | "plot"; // default: "line"
color?: string; // defaults to internal palette
dashed?: boolean; // default: false
useTag?: "start" | "end"; // default: "none"
dataLabels?: boolean; // default: true
useProgression?: boolean; // default: false
useArea?: boolean; // default: false
smooth?: boolean; // default: false
shape?: "circle" | "triangle" | "square" | "diamond" | "pentagon" | "hexagon" | "star"; // default: "circle"
scaleSteps?: number; // active when config.chart.grid.labels.yAxis.useIndividualScale is set to true
scaleLabel?: string; // active when config.chart.grid.labels.yAxis.useIndividualScale is set to true
autoScaling?: boolean; // active when config.chart.grid.labels.yAxis.useIndividualScale and config.chart.grid.labels.yAxis.stacked are set to true
stackRatio?: number; // from 0 to 1, active when config.chart.grid.labels.yAxis.useIndividualScale and config.chart.grid.labels.yAxis.stacked are set to true
showSerieName?: "start" | "end"; // default: "none"
}