Hi Jashin,
First, I would like to inform you that there is a separate forum for questions related to RadChart for WinForms as it a completely different product. Please consider writing your future questions
here. Thank you.
And onto your question -- if you are populating RadChart X axis manually, the items are available in
RadChart1.PlotArea.XAxis.Items collection. However, if you use the default
AutoScale=true setting, the items will be auto-generated and available in the
BeforeLayout event handler:
| foreach (ChartAxisItem item in RadChart1.PlotArea.XAxis.Items) |
| { |
| item.TextBlock.Text = "Custom Axis Label"; |
| } |
Hope this helps.
Regards,
Velin
the Telerik team
Check out
Telerik Trainer, the state of the art learning tool for Telerik products.