I have a line chart that displays line series.
How is it possible to highlight the data points always?
Currently only when mouse over it highlights one data point.
<ngx-charts-line-chart
class="chart-container"
[scheme]="colorScheme"
[schemeType]="schemeType"
[results]="results"
[animations]="animations"
[legend]="true"
[legendTitle]="legendTitle"
[legendPosition]="legendPosition"
[gradient]="gradient"
[xAxis]="showXAxis"
[yAxis]="showYAxis"
[showXAxisLabel]="showXAxisLabel"
[showYAxisLabel]="showYAxisLabel"
[xAxisLabel]="xAxisLabel"
[yAxisLabel]="yAxisLabel"
[autoScale]="true"
[xScaleMin]="xScaleMin"
[xScaleMax]="xScaleMax"
[yScaleMin]="yScaleMin"
[yScaleMax]="yScaleMax"
[timeline]="timeline"
[showGridLines]="true"
[roundDomains]="true"
[curve]="curve"
>
</ngx-charts-line-chart>
Or is there any other chart type that'd provide data points on the graph? I tested Bubble chart but it only works with time and number as X axis. I'd need to use a string as X axis.