Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How to have data labels / value labels for only the starting and ending points of a line chart?
Hello,
There is no easy way, but you can achieve what you want with some workaround method.
SampleData:
LOAD * INLINE [
Dim, Value
1, 10
2, 12
3, 14
4, 16
5, 18
6, 20
];
You have to enable data labels on the line chart.
Then you have to set measure expression as: Dual(if(Dim=1 or Dim=6,Value,''),Sum(Value))
Finally, number formatting have to be changed to measure expression.
The result will look like this.
There is no way to remove the data points between starting point and ending point, but you can unset labels for them.
I hope it solves.