Help with change curve line color from MATLAB
3 次查看(过去 30 天)
显示 更早的评论
I use following code:
CurveObjectToday = TheChartObject.Chart.SeriesCollection.NewSeries;
CurveObjectToday.Name = 'T'; % curve legend
% Select data for the curve
XRange = DataSheet.Range([Contract_Col, num2str(StartRow)...
,':',Contract_Col, num2str(EndRow)]);
YRange = DataSheet.Range([M2MBasisToday_Col, num2str(StartRow)...
,':',M2MBasisToday_Col, num2str(EndRow)]);
CurveObjectToday.XValues = XRange;
CurveObjectToday.Values = YRange;
CurveObjectToday.Type = 4;
CurveObjectToday.Format.Line.ForeColor.RGB = 3; % red
The curve was plotted, but the color was not changed to the 'red' as I expected. ANy suggestion? Thanks a lot.
2 个评论
Andrew Newell
2011-3-18
Where did you get TheChartObject from? I can't find any documentation on it.
回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!