Can someone please suggest a way to color values (data points text primitives?) on a line chart? I attempted to override chart_ChartDrawItem() and setting e.Primitive.PE.Fill = color; but that colors all text primitives including axis labels and values. I need to color only values. Thanks for your input.
it should be sufficient to check the Path property of the text primitive and make sure it's equal to null. Axis labels have the Path set to something like "Border.Title.Grid.X". ChartText labels have the Path set to null.