Home Forums Chart Support Line chart with data points at axis maximum Reply To: Line chart with data points at axis maximum

#4842

Chart clips anything that goes outside of axis’s maximum/minimum. So in cases where markers at the boundaries are getting clipped, here is what I would do.

axisY:{
        maximum: 103,
        lineThickness: 0
      }

This will slightly increase the axis range but will not show any label at the end – which gives an impression that 100 is the maximum range of chart.


Sunil Urs