Hi Steema Support
We are using Custom labels in our chart but we are unable to set their font size of axis labels.
We are attaching a demo file for the same.
Please provide any solution asap.
Thanks
PlanoResearch
Unable to set font size of custom labels
Unable to set font size of custom labels
- Attachments
-
- ManageAxis.rar
- Demo
- (58.29 KiB) Downloaded 665 times
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Unable to set font size of custom labels
Hello,
Try:amol wrote:We are using Custom labels in our chart but we are unable to set their font size of axis labels.
We are attaching a demo file for the same.
Code: Select all
while ((labelvalueBottom) <= tChart1.Axes.Bottom.Maximum)//tChart1.Axes.Bottom.Minimum ++ incr
{
AxisLabelItem item = tChart1.Axes.Bottom.Labels.Items.Add(labelvalueBottom, labelvalueBottom.ToString());
item.Font.Size = 4;
labelvalueBottom += incrBottom;
}
Best Regards,
Christopher Ireland / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |