User (Legacy) Posted July 7, 2004 Report Posted July 7, 2004 Is it possible in a combination chart to set independent colors for data points on one series and have a consistant color for data points on a second? It looks like this cannot be done because the MultipleColors property is on the ChartCore class. However, maybe there is another way.
Software FX Posted July 8, 2004 Report Posted July 8, 2004 As you pointed out, MultipleColors is a property at the chart level, not at the series level, so you can not have "automatic" multiple colors for one series only. You can however, without using MultipleColors, set the color of each point independently using the following: chart.Point[<Series Index>,<Point Index>].Color = <your color>; This can be done in a per-point basis so you can do it to all or some points of one or more series. -- FP Software FX
Recommended Posts
Archived
This topic is now archived and is closed to further replies.