In the drawing of my scatter chart I was wondering if there was a way to show a line across the graph that represents a min, max or set point value without having to create a series that would represent this?
Hello wltaylor,
I think that you could use the following code sample in order to achieve the desired look and feel:
private void ultraChart1_FillSceneGraph(object sender, Infragistics.UltraChart.Shared.Events.FillSceneGraphEventArgs e) { Line l = new Line(new Point(50, 50), new Point(1000, 50)); l.PE.Stroke = Color.Red; e.SceneGraph.Add(l); }
Please feel free to let me know if I misunderstood you or if you have any other questions.
My series is a time series where the Y Axis is a date ,how does that become a point? Also is there a way to do this while I am adding data so that I do not have to Add Handlers for every graph utilizing the FillSceneGraph event?