Hellow, i have a control xamChart, and i have a datatable with this struct.
City Total
A 100
b 200
when i graph this data is perfect the name of my cities, but when i have 10 or mores rows, the text of my cities is unreadable, and i need change the size so that the user can undertand the text.
Please how i can change the size of a text series.
i assume you are talking about the x-axis labels in your chart. if you meant something different, please let me know.
here's how to change the size of the x-axis labels:
<igCA:XamChart> <igCA:XamChart.Axes> <igCA:Axis AxisType="PrimaryX"> <igCA:Axis.Label> <igCA:Label FontSize="24" /> </igCA:Axis.Label> </igCA:Axis> </igCA:XamChart.Axes> </igCA:XamChart>