Whether it is possible to block that the label affects the size of the chart?
When the primaryXAxis has setting labelIntersectAction: 'MultipleRows',, the chart is automatically smaller.
I have two bar charts next to each other and one has more elements and they are not equal because the labels reduce this one.
|
public legendSettings: Object = {
visible: true,
position: 'Bottom',
width: "40%"
}; |
Thank you for the answer and in the case of the legend I managed to set a fixed height while in the case of a bar chart where it is not a legend is a problem but labels under the chart?
|
public primaryXAxis: Object = {
labelIntersectAction: 'Trim'
}; |
|
public primaryXAxis: Object = {
labelIntersectAction: 'None',
labelStyle:{size: '11px'}
}; |