1. I am using a Polar Chart, but I believe this is applicable to all chart types.
2. I had to re-size the points I am plotting and give varying shades based on a property value - All working fine.
3. When there are too many points on the chart, I can not see the grids/axis.
Rather than re-drawing the axis as a primitive, is there a way I can re-position the different layers so that the layer containing the axis is above the scene graph layer.
Thanks
Anil
if (this.SymbolsShouldBeVisibile)
{
IEnumerator en = this.symbolArray.GetEnumerator();
while (en.MoveNext())
Symbol currentSymbol = en as Symbol;
//e.SceneGraph.Add(en.Current as Symbol); // Changed from ...
e.SceneGraph.Insert(3,en.Current as Symbol); // Changed to .. and it works.
}