Hello,
I was using Line chart to make a graph points connected by lines. It shows strings on x axis and numbers on Y.
In one scenario I have only one point like (a, 10) which i like to show as a single point.
I observed scatterChart allows us to draw a single point but it needs two numeric columns.
Is there a way to draw a single point somewhere on chart with string showing as label on x axis and value for the Y axis.
Thanks
bp
Unfortunately, in order to draw a single point this way, you need to use a custom layer or handle FillSceneGraph event (in 7.3 or later). You can add a Symbol primitive and a Text primitive to the chart at pretty much any location.
You can try following this example to get a better understanding on how the SceneGraph works:http://help.infragistics.com/Help/NetAdvantage/NET/2007.3/CLR2.0/html/Chart_Modify_Scene_Graph_Using_FillSceneGraph_Event.html
Yes, Primitives worked.
Another way i tried was using Scatter chart and renaming labels on X axis using IRender, but ran into 2 issues like plotting points on x axis when all y coordinate points where zero, maintaining right tick intervals on x axis.