Hide Comments
Hide Comments

Comments (0)

Contains all the EQ bars in the equalizer chart. Each item ( RSBarCharts.TRSEQChartValue ) specifies one bar and its properties, including Value and Caption. Use the Values collection to add, delete, and modify EQ bars in the chart.
 

Namespace: RSBarCharts

expandingSyntax

Delphi

published
  property Values: TRSEQChartValues read GetValues write SetValues stored IsValuesStored;
 

Property Value

Type: TRSEQChartValues

expandingExamples

The following code sets up a TRSEQChart to display images in the bars and creates a couple of bars:

Delphi

var
   Value: TRSEQChartValue;  // note, this type should be the same that the chart uses (e.g., TRS2DChartValue, TRSArrowChartValue, etc)
 begin
   RSEQChart1.EQSizePct := 75;
 
   // Add first EQ
   RSEQChart1.Values.Add.Value := 10.0;
   // Add second EQ
   RSEQChart1.Values.Add.Value := 25.0;
 end;

expandingSee Also

Comments (0)

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