Hide Comments
Hide Comments

Comments (0)

The TRSCandleStickChart component is a FMX.RS.BarCharts.TRSHighLowAverageChart descendant that represents a candlestick chart. The CandleStick Chart displays each chart value ( FMX.RS.BarCharts.TRSCandleStickChartValue ) as a vertical or horizontal candlestick (depending on    Orientation).

A candlestick chart is a style of financial chart used to describe price movements of a security, derivative, or currency. Each "candlestick" typically shows one day; so for example a one month chart may show the 20 trading days as 20 "candlesticks". It is something like a combination of line-chart and a bar-chart: each bar represents all four important pieces of information for that day: the open, the close, the high and the low.

Each value draws a separate candlestick and the order of the candlesticks is based on the order of the TRSCandleStickChartValue in the collection.

The TRSCandleStickChartValue class uses the Value property to specify the height of each candlestick. The X property specifies where in the horizontal axis that candlestick is located. The UpShape property specifies the Bar Style and Brush/Pen to use when a candlestick closes higher than it opens. The DownShape property specifies the Bar Style and Brush/Pen to use when a candlestick closes lower than it opens.
 

CandleStickChartExample

noteNote

Charts are TGraphicControl descendants for VCL and TControl descendants for FMX. Display charts on a chart panel (with integrated axes, legend, header, footers, etc) or stand-alone (allowing use of FMX effects or embedding within other controls). Set the Panel property to the FMX.RS.ChartPanel.TRSChartPanel you want the chart displayed inside or nil for stand-alone use.

Namespace: FMX.RS.BarCharts

expandingInheritance Hierarchy

TControl
  FMX.RS.ChartPanel.TRSCustomChart
    FMX.RS.Charts.TRSChart
      FMX.RS.BarCharts.TRSCustomBarChart
        FMX.RS.BarCharts.TRSCustomSparseBarChart
          FMX.RS.BarCharts.TRSHighLowAverageChart
            FMX.RS.BarCharts.TRSCandleStickChart
 

expandingSyntax

Delphi

type
  TRSCandleStickChart = class(TRSHighLowAverageChart)
  end; 
 

expandingConstructors

 

Name

Description

public constructor

Create(TComponent)

Initializes a new instance of the TRSCustomChart class. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

public destructor

Destroy

Represents the destructor of the TRSCandleStickChart class. (Overrides FMX.RS.BarCharts.TRSCustomBarChart.Destroy.)

Top

expandingProperties

 

Name

Description

published property

Align

Represents property Align. (Inherited from FMX.RS.Charts.TRSChart.)

published property

AverageLinePct

Defines the percentage of the total available bar width that the average line should stick out from the side of the bar (Inherited from FMX.RS.BarCharts.TRSHighLowAverageChart.)

protected property

AxesHints

 (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

public property

BarSize

Returns the actual size of the each bar in pixels. The BarSize is calculated by taking the size of the   ChartRect of the FMX.RS.ChartPanel.TRSCustomChartPanel , dividing it by the number of bars, and then using the   BarSizePct of the remainder.
 (Inherited from FMX.RS.BarCharts.TRSCustomBarChart.)

published property

BarSizePct

Represents property BarSizePct.

public property

BarStyle

Specifies the style, or shape, of the bars in the bar chart. Use this property to specify the shape of all the bars in the bar chart. (Inherited from FMX.RS.BarCharts.TRSCustomBarChart.)

published property

Brush

Represents property Brush. (Inherited from FMX.RS.Charts.TRSChart.)

published property

Caption

Represents property Caption. (Inherited from FMX.RS.Charts.TRSChart.)

published property

ClipChildren

Represents property ClipChildren. (Inherited from FMX.RS.Charts.TRSChart.)

published property

ClipParent

Represents property ClipParent. (Inherited from FMX.RS.Charts.TRSChart.)

published property

Color

Represents property Color. (Inherited from FMX.RS.Charts.TRSChart.)

public property

ColorList

Defines the color list to use when new chart values are created. When a chart value is created and a color is not specified, the object will get a new color based on the next color in the list. If the list is at the end, the new color will be the first color in the list.

Set the ColorList property directly to define your own custom color scheme. Set the ColorScheme property to use one of the predefined color lists.

noteNote

The new color list will be applied to the existing chart values.

published property

ColorScheme

Represents property ColorScheme. (Inherited from FMX.RS.Charts.TRSChart.)

published property

Cursor

Represents property Cursor. (Inherited from FMX.RS.Charts.TRSChart.)

published property

DownShape

Specifies the Bar Style (for the candlestick body) and the Brush and Pen to use when a candlestick closes lower than it opens.

published property

Enabled

Represents property Enabled. (Inherited from FMX.RS.Charts.TRSChart.)

public property

FirstIndex

The FirstIndex and the     LastIndex properties define the indices of the Values that are currently being drawn in the chart.

Usually, these properties are equivalent to 0 for the FirstIndex and Values.Count-1 for the LastIndex. However, when the TRSChartPanel component has been zoomed, these properties reflect the point just before the first point in the zoomed area and the point just after the last point in the zoomed area (this ensures the visual aspect of the chart by allowing, for example, lines to be drawn into and out of the zoomed area. The FirstIndex and LastIndex properties provide more efficient access to only the values that are currently being drawn.

noteNote

For charts that don't have an easy visual ordering (such as a shape chart where depending on sizes things can overlap), the FirstIndex and LastIndex will be the entire Values collection.

published property

Font

Represents property Font. (Inherited from FMX.RS.Charts.TRSChart.)

public property

FontFill

Specifies the brush, including color, to use for filling text (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

published property

Group

Represents property Group. (Inherited from FMX.RS.Charts.TRSChart.)

public property

GroupIndex

Use the GroupIndex property to specify the ordering of the charts in a group at design time (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

published property

GroupStyle

Represents property GroupStyle. (Inherited from FMX.RS.Charts.TRSChart.)

published property

Height

Represents property Height. (Inherited from FMX.RS.Charts.TRSChart.)

published property

HitTest

Represents property HitTest. (Inherited from FMX.RS.Charts.TRSChart.)

published property

HorizAxis

Represents property HorizAxis. (Inherited from FMX.RS.Charts.TRSChart.)

published property

HorizontalAxis

Represents property HorizontalAxis. (Inherited from FMX.RS.Charts.TRSChart.)

public property

LastIndex

The FirstIndex and the     LastIndex properties define the indices of the Values that are currently being drawn in the chart.

Usually, these properties are equivalent to 0 for the FirstIndex and Values.Count-1 for the LastIndex. However, when the TRSChartPanel component has been zoomed, these properties reflect the point just before the first point in the zoomed area and the point just after the last point in the zoomed area (this ensures the visual aspect of the chart by allowing, for example, lines to be drawn into and out of the zoomed area. The FirstIndex and LastIndex properties provide more efficient access to only the values that are currently being drawn.

noteNote

For charts that don't have an easy visual ordering (such as a shape chart where depending on sizes things can overlap), the FirstIndex and LastIndex will be the entire Values collection.

public property

Listeners

Tracks the FMX.RS.ChartPanel.IChartPanelListeners which are listening for changes to this chart. The TRSCustomChart class uses this list to automatically notify listeners when the chart or its values change.

Add a class to this list in order for it to receive change events from the chart.

protected property

LocalHorizontalAxis

Represents property LocalHorizontalAxis. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected property

LocalVerticalAxis

Represents property LocalVerticalAxis. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

published property

Margins

Represents property Margins. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OffsetVertical

Represents property OffsetVertical. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnChange

Represents property OnChange. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnClick

Represents property OnClick. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnCustomDrawValue

Represents property OnCustomDrawValue.

published property

OnDblClick

Represents property OnDblClick. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnDragDrop

Represents property OnDragDrop. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnDragEnd

Represents property OnDragEnd. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnDragEnter

Represents property OnDragEnter. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnDragLeave

Represents property OnDragLeave. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnDragOver

Represents property OnDragOver. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnDraw

Represents property OnDraw. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnDrawing

Represents property OnDrawing. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnMouseDown

Represents property OnMouseDown. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnMouseEnter

Represents property OnMouseEnter. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnMouseLeave

Represents property OnMouseLeave. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnMouseMove

Represents property OnMouseMove. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnMouseUp

Represents property OnMouseUp. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnMouseWheel

Represents property OnMouseWheel. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnResize

Represents property OnResize. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnValueChange

Represents property OnValueChange. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnValueSelectionChange

Represents property OnValueSelectionChange. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnValueVisibleChange

Represents property OnValueVisibleChange. (Inherited from FMX.RS.Charts.TRSChart.)

published property

OnVisibleChange

Represents property OnVisibleChange. (Inherited from FMX.RS.Charts.TRSChart.)

published property

Opacity

Represents property Opacity. (Inherited from FMX.RS.Charts.TRSChart.)

published property

Options

Represents property Options.

published property

Orientation

Represents property Orientation.

published property

Padding

Represents property Padding. (Inherited from FMX.RS.Charts.TRSChart.)

published property

Panel

Represents property Panel. (Inherited from FMX.RS.Charts.TRSChart.)

public property

PanelColorScheme

Specifies which color scheme to use when new chart values are created with default color values. If Panel is not nil and this property is True, then the chart panel's   ChartColorScheme is used. Otherwise, the   ColorScheme is used (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

published property

ParentFont

Represents property ParentFont. (Inherited from FMX.RS.Charts.TRSChart.)

published property

ParentSelectionColor

Represents property ParentSelectionColor. (Inherited from FMX.RS.Charts.TRSChart.)

published property

Pen

Represents property Pen. (Inherited from FMX.RS.Charts.TRSChart.)

published property

PopupMenu

Represents property PopupMenu. (Inherited from FMX.RS.Charts.TRSChart.)

published property

Position

Represents property Position. (Inherited from FMX.RS.Charts.TRSChart.)

published property

Preview

Represents property Preview. (Inherited from FMX.RS.Charts.TRSChart.)

published property

RotationAngle

Represents property RotationAngle. (Inherited from FMX.RS.Charts.TRSChart.)

published property

RotationCenter

Represents property RotationCenter. (Inherited from FMX.RS.Charts.TRSChart.)

published property

Scale

Represents property Scale. (Inherited from FMX.RS.Charts.TRSChart.)

published property

SelectionColor

Represents property SelectionColor. (Inherited from FMX.RS.Charts.TRSChart.)

published property

ShowHint

Represents property ShowHint. (Inherited from FMX.RS.Charts.TRSChart.)

protected property

State

Represents property State. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

published property

Style

Defines the candlestick style.
Candlesticks are usually composed of the body, and an upper and a lower shadow (wick): the area between the open and the close is called the real body, price excursions above and below the real body are called shadows.
 

published property

UpShape

Specifies the Bar Style (for the candlestick body) and the Brush and Pen to use when a candlestick closes higher than it opens.

public property

UseOrigin

Controls whether the bar chart uses the Origin property as its baseline bar chart value. (Inherited from FMX.RS.BarCharts.TRSCustomBarChart.)

published property

ValueLabelFormat

Represents property ValueLabelFormat. (Inherited from FMX.RS.Charts.TRSChart.)

published property

ValueLabelStyle

Represents property ValueLabelStyle. (Inherited from FMX.RS.Charts.TRSChart.)

published property

Values

Contains all the candlesticks in the candlestick chart. Each item (TRSCandleStickChartValue) specifies one candlestick and its properties, including X, Open, Close, High, Low, Average, Color, and Caption. Use the Values collection to add, delete, and modify candlesticks in the chart.
 

published property

VertAxis

Represents property VertAxis. (Inherited from FMX.RS.Charts.TRSChart.)

published property

VerticalAxis

Represents property VerticalAxis. (Inherited from FMX.RS.Charts.TRSChart.)

published property

Visible

Represents property Visible. (Inherited from FMX.RS.Charts.TRSChart.)

public property

VisibleCount

Returns the number of TRSChartValue that are visible for the chart (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

published property

Width

Represents property Width. (Inherited from FMX.RS.Charts.TRSChart.)

Top

expandingMethods

 

Name

Description

public method

AfterPaint

Represents method AfterPaint. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

public method

Assign(TPersistent)

Represents method Assign(TPersistent). (Overrides FMX.RS.BarCharts.TRSHighLowAverageChart.Assign(TPersistent).)

protected method

AxisChanged(TRSChartAxis)

Represents method AxisChanged(TRSChartAxis). (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

Changed

Overloaded. Represents method Changed. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

Changed(TRSChartValue)

Overloaded. Represents method Changed(TRSChartValue). (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

public method

Clone

Creates a "deep" copy of the chart. It constructs a new chart of the correct type and then calls the Assign method to copy its properties to the new copy.

alert_cautionCaution

Note that the new TRSCustomChart has the same owner as the current chart. If there is no owner, you are responsible for freeing the new clone.

protected method

CreateBrush

Represents method CreateBrush. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

CreateChartValues

Creates the FMX.RS.ChartPanel.TRSChartValues class for the   Values property

alert_noteNotes to Inheritors

Override this method to create your TRSChartValues descendant

protected method

CreateFont

Represents method CreateFont. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

CreatePen

Represents method CreatePen. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

public method

CreatePreviewValues

Creates sample values for illustrating how the chart will look. This function is automatically called at design-time to fill the chart with sample values. It can also be called at run-time to add more values to the chart (i.e., the chart is not cleared first)

noteNote

Set the Preview property to false to have the design-time sample values show up at run-time

protected method

DoUpdateAxisInfo(TRSChartAxis)

Represents method DoUpdateAxisInfo(TRSChartAxis). (Overrides FMX.RS.BarCharts.TRSCustomBarChart.DoUpdateAxisInfo(TRSChartAxis).)

public method

Draw(TCanvas,TCanvasRect)

Overloaded.  Paints the chart to the specified Canvas in the specified location. The Draw method first calls the     OnDrawing event, which signals that it is about to draw and allows users to stop the drawing before it occurs. Then, it calls the protected     InternalDraw method to actually do the drawing. Finally, it calls the OnDraw event to signal the end of drawing of the chart.

Use the Draw method to paint the chart to any canvas and anywhere and with any size on the canvas.

alert_noteNotes to Callers

The Draw Method uses the     HorizontalAxis and     VerticalAxis properties to convert the chart values into pixel coordinates. If you want to use a different axis (but not change the above properties), call the overloaded Draw method.









































































































































































 (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)



public method

Draw(TCanvas,TCanvasRect,TRSChartAxis,TRSChartAxis,Boolean,Boolean)

Overloaded.  Paints the chart to the specified Canvas in the specified location. The Draw Method uses the supplied TRSChartAxis (instead of the     HorizontalAxis and     VerticalAxis properties) to convert the chart values into pixel coordinates.

Unlike the regular Draw method, this method draws the axes as well (useful for when the chart is not connected to a panel).

Use the Draw method to paint the chart to any canvas and anywhere and with any size on the canvas.

 (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

DrawAverageLine(TCanvas,TCanvasRect,TRSHighLowAverageChartValue,THighLowAverageStyle,Boolean)

Draw the line for the average on the side of the bar (Inherited from FMX.RS.BarCharts.TRSHighLowAverageChart.)

public method

DrawAxes(TCanvas,TCanvasRect,TRSChartAxis,TRSChartAxis)

Draws the specified axes to the Canvas (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

DrawBar(TCanvas,TCanvasRect,TRSBarChartValue)

Represents method DrawBar(TCanvas,TCanvasRect,TRSBarChartValue). (Inherited from FMX.RS.BarCharts.TRSCustomBarChart.)

public method

DrawGlyph(TCanvas,TCanvasRect)

Overloaded. Represents method DrawGlyph(TCanvas,TCanvasRect). (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

public method

DrawGlyph(TCanvas,TRSChartValue,TCanvasRect)

Represents method DrawGlyph(TCanvas,TRSChartValue,TCanvasRect). (Overrides FMX.RS.BarCharts.TRSHighLowAverageChart.DrawGlyph(TCanvas,TRSChartValue,TCanvasRect).)

protected method

DrawHLABar(TCanvas,TCanvasRect,TRSHighLowAverageChartValue,Boolean)

Draw the High/Low/Average Bar Shape (Overrides FMX.RS.BarCharts.TRSHighLowAverageChart.DrawHLABar(TCanvas,TCanvasRect,TRSHighLowAverageChartValue,Boolean).)

protected method

Drawing(TCanvas,TCanvasRect)

Calls the OnDrawing event and returns True if the draw process should continue.

This method is called before the InternalDraw method.

public method

DrawLabel(TCanvas,String,TCanvasPixel,TCanvasPixel,Single)

Overloaded. Draws the text caption centered above the X, Y point without clipping.

noteNote

The Opacity is ignored in VCL

public method

DrawLabel(TCanvas,String,TCanvasRect,Single)

Overloaded. Draws the text caption centered within the rectangle. The text is clipped

noteNote

The Opacity is ignored in VCL

public method

DrawLabel(TCanvas,TRSChartValue,TCanvasPixel,TCanvasPixel)

Overloaded. Draws the text caption centered above the X, Y point without clipping.

noteNote

The Opacity is specified by the FMX.RS.ChartPanel.TRSChartValue.Opacity property

public method

DrawLabel(TCanvas,TRSChartValue,TCanvasRect)

Overloaded.  Draws a label for the TRSChartValue on the canvas. The text of the label is controlled by the ValueLabelStyle property.

The label is drawn within the specified rectangle.

noteNote

The Opacity is specified by the FMX.RS.ChartPanel.TRSChartValue.Opacity property

protected method

Drawn(TCanvas,TCanvasRect)

Calls the OnDraw event.

This method is called after the InternalDraw method.

public method

EndUpdate

Re-enables screen repainting and change events. Use EndUpdate to re-enable screen repainting and change events that were turned off with the BeginUpdate method. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

public method

FormatValue(TRSChartValue,TRSLabelTextStyle)

Generates a label for the Value based on the TextStyle (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

public method

GetAdjOffsetVertical

Returns the vertical offset (     OffsetVertical).

If coUseVerticalOffset is not in     Options, this method always returns 0. If coUseVerticalOffset is in Options, the function returns the OffsetVertical value.

public method

GetAdjOrigin

Returns the adjusted origin for the bar chart. If the     UseOriginproperty is set, this value is the Origin. If the UseOrigin property is false, the adjusted origin equals 0.

Note that when bar charts are stacked (see GroupStyle=gsStacked), the bottom-most bar chart adjusted origin is used as the origin for all the bar charts.
 

public method

GetAxisCaption(TRSChartAxis,Integer,Double)

Represents method GetAxisCaption(TRSChartAxis,Integer,Double). (Inherited from FMX.RS.BarCharts.TRSCustomSparseBarChart.)

protected method

GetBarRect(TCanvasRect,TRSBarChartValue)

Overloaded. Returns the canvas rectangle in pixels for the bar value (Inherited from FMX.RS.BarCharts.TRSCustomBarChart.)

protected method

GetBarRect(TCanvasRect,TRSBarChartValue,TRSCustomChart,TRSChartValueType,TRSChartValueType,TRSChartValueType)

Returns the canvas rectangle in pixels for the bar value. (Overrides FMX.RS.BarCharts.TRSCustomSparseBarChart.GetBarRect(TCanvasRect,TRSBarChartValue,TRSCustomChart,TRSChartValueType,TRSChartValueType,TRSChartValueType).)

protected method

GetBarStyle(TRSBarChartValue)

Returns the bar style of the value (Overrides FMX.RS.BarCharts.TRSCustomBarChart.GetBarStyle(TRSBarChartValue).)

public methodClass member

GetChartType

Returns the chart type enumerated value for this class. Each chart class overrides this class function to return the RSChartConsts|TRSChartType enumerated value (Overrides FMX.RS.BarCharts.TRSHighLowAverageChart.GetChartType.)

protected method

GetColor

Overloaded. Represents method GetColor. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

public method

GetColor(TRSChartValue)

Returns the color of the chart value. The color of the TRSChartValue can change depending on the   Options property as well as any other chart states (e.g., the TRSCandleStickChart class overrides this method to turn the color red or green depending on if the Open value is greater than the Closing Value) (Overrides FMX.RS.ChartPanel.TRSCustomChart.GetColor(TRSChartValue).)

public method

GetCumulativeTotal(Integer,Integer,TRSCustomChartClass)

Determine the cumulative value at this index for all charts in the Group. The ValIndex specifies the     TRSChartValue.Values dimension to compare.

Used for stacking charts.

public method

GetCumulativeValue(Integer,Integer,TRSCustomChartClass)

Determine the cumulative value at this index for all charts below (spatially) this chart in the same     Group. The ValIndex specifies the     TRSChartValue.Values dimension to compare.

Used for stacking charts.

protected method

GetGroupDimension

Represents method GetGroupDimension. (Overrides FMX.RS.ChartPanel.TRSCustomChart.GetGroupDimension.)

public method

GetValueColor

Returns a new chart color based on the   ChartColorScheme and   ChartColorList. Every time a chart is created, it is assigned a new color from the current ChartColorList. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

InitializeChangeEvents

Initialize the OnChange events of structures. Use this method to assign event handlers for structures (e.g., Pen.OnChange := MyChangeMethod).

alert_noteNotes to Inheritors

The constructor calls this method after it calls the InitializeChart method, which is where the structures should be actually created and initialized.

protected method

InitializeChart

Creates and initialize structures and values of chart. This method is the safe place to initialize chart values without change events occurring.

alert_noteNotes to Inheritors

The constructor calls this method. Use this method to actually create and initialize properties. Do not assign event properties in this method (use the InitializeChangeEvents method instead)

protected method

InternalDraw(TCanvas,TCanvasRect)

Overloaded.  Paints the chart graphic to the specified canvas at the specified rectangle. The InternalDraw method is called by the     Draw method.

Descendant classes of TRSCustomChart override the InternalDraw method to actually paint themselves.

alert_noteNotes to Inheritors

The default InternalDraw method implementation assigns the     Brush, Pen , and Font to the Canvas.

protected method

InternalSelect(TCanvasRect,TRSChartSelectionAction)

Selects or deselects chart Values ( FMX.RS.ChartPanel.TRSChartValue ) based on whether they intersect with the selection rectangle (which is in pixel coordinates).

The base method converts the SelectionRect to chart coordinates (based on     HorizontalAxis and     VerticalAxis) and then selects values based on the TRSChartValue.Selectable method

public method

Invalidate

Represents method Invalidate. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

public method

IsSelectable(TCanvasRect)

Returns True if any value in the chart intersects with the SelectionRect (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

IsValuesStored

Represents method IsValuesStored. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

public method

IsVisible

Indicates whether the chart is visible. A chart is visible if its Visible property is True and both axes have been assigned. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

Loaded

Represents method Loaded. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

MouseHover(TCanvasRect)

Represents method MouseHover(TCanvasRect). (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

Notification(TComponent,TOperation)

Represents method Notification(TComponent,TOperation). (Overrides FMX.RS.ChartPanel.TRSCustomChart.Notification(TComponent,TOperation).)

protected method

Paint

Represents method Paint. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

PanelChanged

Represents method PanelChanged. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

SaveCanvasResources(TCanvas,TBrush,TRSPen,TFont)

Represents method SaveCanvasResources(TCanvas,TBrush,TRSPen,TFont). (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

public method

Select(TCanvasRect,TRSChartSelectionAction)

Selects or deselects chart Values ( FMX.RS.ChartPanel.TRSChartValue ) based on whether they intersect with the selection rectangle (which is in pixel coordinates).

The base method converts the SelectionRect to chart coordinates (based on     HorizontalAxis and     VerticalAxis) and then selects values based on the TRSChartValue.Selectable method

alert_noteNotes to Inheritors

Descendant classes override the InternalSelect method

protected method

SelectionColorChanged

Represents method SelectionColorChanged. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

SenderChanged(TObject)

Overloaded. Represents method SenderChanged(TObject). (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

SetCanvasResources(TCanvas,TBrush,TRSPen,TFont,Boolean,Boolean)

Overloaded. Represents method SetCanvasResources(TCanvas,TBrush,TRSPen,TFont,Boolean,Boolean). (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

SetCanvasResources(TCanvas,TRSChartValue,Boolean,Boolean)

Represents method SetCanvasResources(TCanvas,TRSChartValue,Boolean,Boolean). (Overrides FMX.RS.ChartPanel.TRSCustomChart.SetCanvasResources(TCanvas,TRSChartValue,Boolean,Boolean).)

protected method

SetColor(TCanvasColor)

Represents method SetColor(TCanvasColor). (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

SetOptions(TChartOptions)

Represents method SetOptions(TChartOptions). (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

SetVisible(Boolean)

Represents method SetVisible(Boolean). (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

UpdateAxisInfo(TRSChartAxis)

Represents method UpdateAxisInfo(TRSChartAxis). (Overrides FMX.RS.ChartPanel.TRSCustomChart.UpdateAxisInfo(TRSChartAxis).)

protected method

UpdateColorScheme

Updates the values to the current color scheme. If PanelColorScheme is True then uses the Panel's color scheme (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

ValueSelectionChanged(TRSChartValue)

Represents method ValueSelectionChanged(TRSChartValue). (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

ValueVisibleChanged(TRSChartValue)

Represents method ValueVisibleChanged(TRSChartValue). (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

VisibleChanged

Represents method VisibleChanged. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected method

WantsCaptions(TRSChartAxis)

Returns true if the chart prefers Captions over Values for its labels on the input Axis. This method provides a hint to the TRSChartAxis when LabelStyle is alsAutomatic. (Overrides FMX.RS.BarCharts.TRSCustomSparseBarChart.WantsCaptions(TRSChartAxis).)

Top

expandingFields

 

Name

Description

protected field

FFirstIndex

Represents field FFirstIndex. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected field

FLastIndex

Represents field FLastIndex. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected field

FOptions

Represents field FOptions. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected field

FSuppressAxesChange

Represents field FSuppressAxesChange. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected field

FUpdating

Represents field FUpdating. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

protected field

FVisibleCount

Represents field FVisibleCount. (Inherited from FMX.RS.ChartPanel.TRSCustomChart.)

Top

expandingExamples

To display a chart, you drop the component on a form and optionally connect its Panel property to the FMX.RS.ChartPanel.TRSChartPanel component where you want it to be displayed. The Values property is the most important property of the chart type and allows you to define the chart values at design-time or run-time. For the CandleStick Chart, the Values property contains TRSCandleStickChartValue collection items which define the X location and Open, Close, Low, High, and Average of the candlestick.

To display a candlestick chart inside a chart panel:
 

Drop a TRSCandleStickChart component on a form
Drop a TRSChartPanel component where you want the chart to be displayed. (Note, more than one chart can share the same chart panel)
Connect the Panel property of the chart to the chart panel

To add a candlestick to the chart (at Design-Time):

Select the TRSCandleStickChart component
 
Click the ellipsis button (...) for the Values property of the chart. This action displays Delphi's Collection Editor for the TRSCandleStickChartValues collection.
 
Use the Add button to add candlesticks (TRSCandleStickChartValue collection item) to the chart.
 
Edit the X property for the horizontal location of the candlestick
Edit the Open, Close, High, Low, and Average properties to specify the candlestick vertically
Optionally, change the Style of the candlestick chart. This changes all candlestick shapes.

The following code sets up a TRSCandleStickChart to display a couple of candlesticks:

Delphi

var
   Value: TRSCandleStickChartValue;  // note, this type should be the same that the chart uses (e.g., TRS2DChartValue, TRSArrowChartValue, etc)
 begin
   RSCandleStickChart1.Style := csCandleStickHighLowCaps;
   RSCandleStickChart1.BarSizePct := 75;
 
   // Add first candlestick
   Value := RSCandleStickChart1.Values.Add;
   Value.X := EncodeDate(2014, 12, 24);
   Value.Open := 82;
   Value.Close := 93;
   Value.High := 100;
   Value.Low := 50;
   Value.Average := 80;
   Value.Color := clRed;
 
   // Add second candlestick
   Value := RSCandleStickChart1.Values.Add;
   Value.X := EncodeDate(2014, 12, 31);
   Value.Open := 70;
   Value.Close := 79;
   Value.High := 90;
   Value.Low := 60;
   Value.Average := 68;
   Value.Color := clBlue;
 end;

expandingSee Also

Comments (0)

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