Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
710
Change the Font Size of my serie
posted

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.

  • 28496
    Offline posted

    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>