Very frequently I found a property to change int he chart editor, but I can't find it to change in runtime mode. There is any trick to find it quick?
By example now I'm trying to find how to change Axes->Left-> Ticks->Axes->Visible
Thanks
Property in chart editor vs runtime mode
-
- Newbie
- Posts: 6
- Joined: Fri Feb 19, 2016 12:00 am
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Property in chart editor vs runtime mode
I sympathize with your predicament - it is not at all obvious, on occasion, how editor properties map to runtime properties. In this case the answer is:wakewakeup wrote:Very frequently I found a property to change int he chart editor, but I can't find it to change in runtime mode. There is any trick to find it quick?
By example now I'm trying to find how to change Axes->Left-> Ticks->Axes->Visible
Code: Select all
private void InitializeChart()
{
tChart1.Aspect.View3D = false;
Line line = new Line(tChart1.Chart);
line.FillSampleValues();
tChart1.Axes.Left.AxisPen.Visible = false;
}
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 |