Bars

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

Bars

Return to chapter overview

Definition

Represents the data returned from the historical data repository in relation to the primary ChartBars object configured on the chart.  See also Bars

 

Property Value

A Bars object

 

Syntax

ChartBars.Bars

 

Examples

ns

protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
{
  if(ChartBars != null && ChartBars.Bars != null)
  {
    Print("The configured bars period type represented on the chart is" + ChartBars.Bars.BarsPeriod.BarsPeriodType);
  }
}