rafael.reimer Posted December 12, 2007 Report Share Posted December 12, 2007 Hi, Can I do a chart with two different series that have the same color ? Thanks, Rafael. Quote Link to comment Share on other sites More sharing options...
maximop Posted December 12, 2007 Report Share Posted December 12, 2007 Yes. You can individually change the series' colors and specify them to be the same. In C++, you can do the following: m_chartPtr->GetSeries()->GetItem(0)->PutColor(RGB(255, 0, 0)); m_chartPtr->GetSeries()->GetItem(1)->PutColor(RGB(255, 0, 0)); This will show two series colored red. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.