Is there a way to make the legend more readable for a LineChart on a CompositeChart. To make it easier to understand my question I have included the image of my sample app:
The lines on the legend are so small that it is difficult to tell what they are. I am using NetAdvantage for Windows Forms 2008 Vol. 1. I would appreciate any advice.
Thanks,Kerry Jenkins
Max Rivlin"] you can use FillSceneGraph or ChartDtawItem event to do this.private void ultraChart1_FillSceneGraph(object sender, Infragistics.UltraChart.Shared.Events.FillSceneGraphEventArgs e){ foreach (Primitive p in e.SceneGraph) { Polyline poly = p as Polyline; if (poly!= null && poly.Path!=null && poly.Path.ToLower().IndexOf("legend") != -1) { poly.PE.StrokeWidth = 5; } }}
you can use FillSceneGraph or ChartDtawItem event to do this.
How would you do this is 2007 Vol.1 version? It doesn't seem to contain a SceneGraph collection.
That worked great!
Thanks
private void ultraChart1_FillSceneGraph(object sender, Infragistics.UltraChart.Shared.Events.FillSceneGraphEventArgs e){ foreach (Primitive p in e.SceneGraph) { Polyline poly = p as Polyline; if (poly!= null && poly.Path!=null && poly.Path.ToLower().IndexOf("legend") != -1) { poly.PE.StrokeWidth = 5; } }}