Hi,
Thanks for the great product.
Consider the dataset for the the line chart:
With the sample, we have 7 labels which are: 1.5, 2, 2.5, 3, 3.5, 4 and 4.5
I want to show the same data with only 3 labels: 2, 3 and 4
Thanks.
|
onAxisLabelRender(args){
if(args.axis.name == "primaryXAxis"){
args.cancel = args.value % 1 != 0;
}
} |
Thank you!