VueUiXy
Added more config options:
config.chart.timeTag to display the x value at selected index. (Define all time values in config.chart.grid.labels.xAxisLabels.values). If values are not defined, the selectedIndex will be displayed.
timeTag: {
show: boolean; // default: false
backgroundColor: string; // default #E1E5E8
color: string; // default: #2D353C
fontSize: number; // default: 12
circleMarker: {
color: string; // default: #2D353C
radius: number: // default: 3
}
}
Also added options in config.chart.highlighter to display a vertical line when hovering on the chart:
highlighter: {
...,
useLine: boolean; // default: false
lineDasharray: number; // default: 2
lineWidth: number; // default: 1
}