Hi,
i am using composite chart.
I am adding 2 layers to composite chart as below
ultraChart1.CompositeChart.ChartLayers.Add(lyTc);
ultraChart1.CompositeChart.ChartLayers.Add(lyEq);
but i am only interested in modifying primitives of first layer i.e. lyTc.
when use FillSceneGraph event of UltraChart i am getting prmitives of both the layers.
is there any way to work only on primitives of first layer lyTC
Thanks,
KK
try evaluating this condition on the primitive to distinguish it as part of lyTc:
if (prim.Layer == lyTc.ChartLayer)
thanks for reply..i will try and i will let you know whether it works or not..