Hide Comments
Hide Comments

Comments (0)

Extends the FMX.RS.ChartPanel.TRSChartGraphicArea class to provide the ability to display an Image in the graphic area, such as for the FMX.RS.ChartPanel.TRSChartHeader.

Namespace: FMX.RS.ChartPanel

expandingInheritance Hierarchy

TInterfacedPersistent
  FMX.RS.ChartPanel.TRSChartGraphic
    FMX.RS.ChartPanel.TRSChartGraphicArea
      FMX.RS.ChartPanel.TRSChartImageArea
        FMX.RS.ChartPanel.TRSChartHeader
 

expandingSyntax

Delphi

type
  TRSChartImageArea = class(TRSChartGraphicArea)
  end; 
 

expandingConstructors

 

Name

Description

public constructor

Create

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

public destructor

Destroy

Represents the destructor of the TRSChartImageArea class. (Overrides FMX.RS.ChartPanel.TRSChartGraphicArea.Destroy.)

Top

expandingProperties

 

Name

Description

public property

Brush

Determines the color and pattern for filling graphical shapes and backgrounds. Set the Brush property to specify the color and pattern to use when drawing the background or filling in graphical shapes. (Inherited from FMX.RS.ChartPanel.TRSChartGraphicArea.)

public property

Image

Specifies the picture that appears in the chart graphic. Use Image to specify the image for the TRSChartImageArea object. Image is a reference to a TPicture object. Use properties and methods of TPicture to specify a bitmap, icon, metafile, or user-defined graphic to be displayed by the chart graphic. The ImageOptions property specifies how the Image will be drawn within the bounds of the chart graphic.

Setting Image at design time brings up the Picture Editor, which can be used to specify the file that contains the image.
 

public property

ImageOptions

Specifies how the Image will be drawn within the bounds of the chart graphic. See the RSChartConsts|TImageOption help for more information.
 

public property

OnChange

Occurs immediately after the chart graphic object changes. Write an OnChange event handler to take specific action when the chart graphic changes. The properties of the chart graphic reflect the new settings when OnChange occurs.

alert_cautionWarning

For chart graphics that a chart or chart panel creates, you shouldn't assign a handler to this event. The chart or chart panel has already assigned an event handler.

public property

Opacity

Specifies the opacity of the graphic when drawn. The opacity is a value between 0 (invisible) and 1 (fully opaque). Any value in-between controls the transparency of the value.

alert_cautionImportant Note

This is an FMX only feature. Any value > 0 is drawn fully opaque in the VCL version

public property

Pen

Specifies the kind of pen the chart graphic area uses for drawing lines and outlining shapes. Set Pen to specify the pen to use for drawing lines and outlining shapes in the image.
 (Inherited from FMX.RS.ChartPanel.TRSChartGraphicArea.)

public property

Visible

Indicates whether this graphic should be drawn or not. The chart panel uses the Visible property to determine if it should call the Draw method for the chart graphic.
 (Inherited from FMX.RS.ChartPanel.TRSChartGraphic.)

Top

expandingMethods

 

Name

Description

public method

Assign(TPersistent)

Copies the contents of another similar object to the current object

alert_noteNotes to Inheritors

Most objects override Assign to handle the assignment of properties from similar objects. When overriding Assign, call the inherited method if the destination object cannot handle the assignment of properties from the class of the Source parameter

protected method

Changed

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

public method

Clone

Creates a "deep" copy of the chart graphic. It constructs a new chart graphic of the correct type and then calls the   Assign method to copy its properties to the new copy. (Inherited from FMX.RS.ChartPanel.TRSChartGraphic.)

protected method

DestRect(TCanvasRect)

Represents method DestRect(TCanvasRect).

public method

Draw(TCanvas,TCanvasRect)

Overloaded. Paints the chart graphic to the specified Canvas in the specified location. It uses the current canvas' brush and pen. Use the Draw method to paint the chart graphic to any canvas and anywhere and with any size on the canvas.

alert_noteNotes to Inheritors

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

public method

Draw(TCanvas,TCanvasRect,TRSChartAxis,TRSChartAxis)

Overloaded.  Paints the chart graphic to the specified Canvas in the specified location. It uses the current canvas' brush and pen. Use the Draw method to paint the chart graphic to any canvas and anywhere and with any size on the canvas.

The VertAxis and HorizAxis parameters can be used to provide point to pixel conversions (see FMX.RS.ChartPanel.TRSChartAxis ).

alert_noteNotes to Inheritors

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

protected method

Drawing(TCanvas,TCanvasRect)

Represents method Drawing(TCanvas,TCanvasRect). (Overrides FMX.RS.ChartPanel.TRSChartGraphic.Drawing(TCanvas,TCanvasRect).)

protected method

Drawn(TCanvas,TCanvasRect)

Represents method Drawn(TCanvas,TCanvasRect). (Inherited from FMX.RS.ChartPanel.TRSChartGraphic.)

protected method

FreeNotification(TObject)

Represents method FreeNotification(TObject). (Inherited from FMX.RS.ChartPanel.TRSChartGraphic.)

protected method

Initialize

Represents method Initialize. (Overrides FMX.RS.ChartPanel.TRSChartGraphicArea.Initialize.)

protected method

InitializeEvents

Represents method InitializeEvents. (Overrides FMX.RS.ChartPanel.TRSChartGraphicArea.InitializeEvents.)

protected method

InternalDraw(TCanvas,TCanvasRect)

Represents method InternalDraw(TCanvas,TCanvasRect). (Overrides FMX.RS.ChartPanel.TRSChartGraphicArea.InternalDraw(TCanvas,TCanvasRect).)

protected method

SenderChanged(TObject)

Represents method SenderChanged(TObject). (Overrides FMX.RS.ChartPanel.TRSChartGraphic.SenderChanged(TObject).)

public method

TiledDraw(TCanvas,TCanvasRect,TTileGraphic,TCanvasPixel,TCanvasPixel)

Overloaded.  Tiles the image across the entire input rectangle.

The Image is drawn at full size from the top left of the ARect across and down until outside of the input rectangle. Use the overloaded TiledDraw methods to constrain the size of the Image.

public method

TiledDraw(TCanvas,TCanvasRect,TTileGraphic,TCanvasPixel,TCanvasPixel,TCanvasPixel,TCanvasPixel)

Overloaded.  Tiles the image across the entire input rectangle.

The Image is drawn at ImageWidth, ImageHeight size from the top left of the ARect across and down until outside of the input rectangle.

public method

TiledDraw(TCanvas,TCanvasRect,TTileGraphic,TCanvasRect)

Overloaded.  Tiles the image across the entire input rectangle.

The Image is drawn at ImageRect size from the top left of the ARect across and down until outside of the input rectangle.

protected method

VisibleChanged

Represents method VisibleChanged. (Overrides FMX.RS.ChartPanel.TRSChartGraphic.VisibleChanged.)

Top

expandingEvents

 

Name

Description

public event

OnDraw

Occurs just after the chart graphic is painted. Write an OnDraw event handler to take specific action when the chart graphic has finished painting. The OnDraw event also allows you to do custom painting after the chart graphic has painted. (Inherited from FMX.RS.ChartPanel.TRSChartGraphic.)

public event

OnDrawing

Occurs just before the chart graphic is painted. Write an OnDrawing event handler to take specific action when the chart graphic is about to paint. If the event handler sets the DoDraw parameter to False, the chart graphic will not be painted. The OnDraw event also allows you to do custom painting before the chart graphic has been painted. (Inherited from FMX.RS.ChartPanel.TRSChartGraphic.)

Top

expandingSee Also

Comments (0)

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