Hello,
I have a Composite Chart with a few layers, all set to LineChart types. I figured out how to control the colour of said lines in each layer. Now, I want to control how each line appears. Is there a way to do this? I am using the .Net 1.1-compatible version of the control suite (NetAdvantage for ASP.NET 2007 Vol. 1 [.NET 1.x])
Thanks for any advice,
Srdjan
You can modify the appearance of each layer by creating an instance of an appropriate appearance class. For example:LineChartAppearance appearance = new LineChartAppearance();appearance.DrawStyle = LineDrawStyle.Dot;appearance.MidPointAnchors = false;appearance.Thickness = 5;myLineLayer.ChartTypeAppearance = appearance;
Thank you for that. It worked perfectly. I do have one more question. Since I am building these charts through code and not the ChartWizard, how do I set the NullHandling to DontPlot on the Composite chart? Is this set on each individual layer or on a chart level?
Thanks again for your help