This is my chart axis configuration
primaryYAxis: {
range : { max: 100 }
}
and this is series configuration
{
name: 'Avg',
points: [],
type: 'line',
fill: 'black',
marker: {
dataLabel: {
//Set text alignment to datalabel text
visible: true,
horizontalTextAlignment: "center",
font: {
size: seriesFontSize,
fontWeight: 'bold',
color: 'black'
}
},
font: {
fontWeight:'bold'
},
border: {
width: 0
},
visible: true
},
tooltip:
{
visible: true
}
}
When data is near 100 datalabel of that point disappear from chart. Is there a way to increase top area space for display datalabel.
PS. My requirement not allow me to increase maximum range beyond 100