How can we change the font color inside Datacharts? For example, the color of the text on x axis and y axis
HI Krishna Bhat i m vb.net developer and i change the x-axix text through that code
Me.UltraChart1.Axis.X.Labels.FontColor = System.Drawing.Color.Green
in the same way change the y axix font color by using that code
Me.UltraChart1.Axis.Y.Labels.FontColor = System.Drawing.Color.RED
Please feel free to let me know if I misunderstood you or if you have any other questions, I will be glad to assist you!
if you need more help ask freely on below link
http://ahmadkhalid44.blogspot.com/
Best regards,
Ahmad Khalid
Software Developer
Thank you Ahmad Khalid,
Actually I am using igDataCharts, which is Jquery based. Do you know any way to change the axis label colors in Jquery.
Thank you
Hi, Krisha.
You can try the following option 'labelTextColor':
$(".selector").igDataChart({ axes: [{ name: "xAxis", type: "numericX", labelTextColor: "blue" }]});
You can find more igDataChart options here. Don't hesitate to ask if you have more questions.
Nikolay Alipiev