How to put subtitles below in Chart?

1

I have tried to work with the Chart in C #.

But now I can not leave all of the subtitles below their respective columns.

The image shows that captions 1, 3, 5, 7, 9 and 11 are not appearing, even if they are named.

Does anyone know how to set up for all column captions to appear?

    
asked by anonymous 29.09.2017 / 15:56

1 answer

2

According to this response , just set it the Interval = 1 , as it will force the display of the Labels regardless of the sizes.

Ex:

ChartID.Areas("myChartAreaName").AxisX.LabelStyle.Interval = 1
    
29.09.2017 / 16:36