Hide Comments
Hide Comments

Comments (0)

Specifies the color of this individual value, e.g., the color of the bar or the point or the shape. When coColorEachPoint is in the FMX.RS.ChartPanel.TRSCustomChart.Options property, this color is drawn by the chart. When coColorEachPoint is not in the the Options property, the Color of the chart is used.

Namespace: FMX.RS.ChartPanel

expandingSyntax

Delphi

published
  property Color: TCanvasColor read FColor write SetColor stored IsColorStored;
 

Property Value

Type: TCanvasColor

expandingExamples

The following code changes all of the Bar's for a TRSBarChart to clRed and creates a stairstep effect with the bars' values.
 

Delphi

var
   i: Integer;
 begin
   for i := 0 to RSBarChart1.Values.Count - 1 do
   begin
     RSBarChart1.Values[i].Color := clRed;
     RSBarChart1.Values[i].Value := i*10;
   end;
 end;
 
   

expandingSee Also

Comments (0)

RiverSoftAVG Charting Component Suite (RCCS) © 2005-2015, Thomas G. Grubb