Difference between revisions of "TsWorksheetChartSource"

From Free Pascal wiki
Jump to navigationJump to search
(slight language fixes; fpspreadsheet is part of lazarus-ccr)
m (Fixed syntax highlighting; deleted category included in page template)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
{{TsWorksheetChartSource}}
 
{{TsWorksheetChartSource}}
  
 +
== Overview ==
 
TsWorksheetChartSource is a charting component which is available in the source code of the [[FPSpreadsheet]] library. It is a chart data source component designed to work with the TChart component from the [[TAChart|TAChartLazarusPkg package]], which usually comes pre-installed with Lazarus.
 
TsWorksheetChartSource is a charting component which is available in the source code of the [[FPSpreadsheet]] library. It is a chart data source component designed to work with the TChart component from the [[TAChart|TAChartLazarusPkg package]], which usually comes pre-installed with Lazarus.
  
Line 7: Line 8:
 
At the moment TsWorksheetChartSource has the following properties to control its behavior:
 
At the moment TsWorksheetChartSource has the following properties to control its behavior:
  
<syntaxhighlight>
+
<syntaxhighlight lang=pascal>
 
   published
 
   published
 
     property PointsNumber: Integer read FPointsNumber write SetPointsNumber default 0;
 
     property PointsNumber: Integer read FPointsNumber write SetPointsNumber default 0;
Line 36: Line 37:
 
To load the data from the grid and into the chart, a button was created with the following code. Notice that we can't just use any Grid, it has to be an FPSpreadsheet Grid, which has the class TsWorksheetGrid:
 
To load the data from the grid and into the chart, a button was created with the following code. Notice that we can't just use any Grid, it has to be an FPSpreadsheet Grid, which has the class TsWorksheetGrid:
  
<syntaxhighlight>
+
<syntaxhighlight lang=pascal>
 
type
 
type
 
    
 
    
Line 66: Line 67:
 
[[Image:Fpschart_run.png]]
 
[[Image:Fpschart_run.png]]
  
[[Category:Lazarus]]
+
== See also ==
[[Category:Components]]
+
 
[[Category:Lazarus-CCR]]
+
* [[FPSpreadsheet]]

Latest revision as of 01:47, 2 March 2020

English (en) français (fr)

Overview

TsWorksheetChartSource is a charting component which is available in the source code of the FPSpreadsheet library. It is a chart data source component designed to work with the TChart component from the TAChartLazarusPkg package, which usually comes pre-installed with Lazarus.

Usage

At the moment TsWorksheetChartSource has the following properties to control its behavior:

  published
    property PointsNumber: Integer read FPointsNumber write SetPointsNumber default 0;
    property XFirstCellCol: Integer read FXFirstCellCol write SetXFirstCellCol default 0;
    property XFirstCellRow: Integer read FXFirstCellRow write SetXFirstCellRow default 0;
    property YFirstCellCol: Integer read FYFirstCellCol write SetYFirstCellCol default 0;
    property YFirstCellRow: Integer read FYFirstCellRow write SetYFirstCellRow default 0;
    property XSelectionDirection: TsSelectionDirection read FXSelectionDirection write SetXSelectionDirection;
    property YSelectionDirection: TsSelectionDirection read FYSelectionDirection write SetYSelectionDirection;
  end;

The Chart will display an amount of PointsNumber points, being that on the coordinates of the X-Axis will be collected from the worksheet starting in the position (XFirstCellRow, XFirstCellCol). Subsequent X-Axis values will be taken from the cells directly to the right of the first cell, if XSelectionDirection has value fpsHorizontalSelection, or below the first cell, if XSelectionDirection has value fpsVerticalSelection. The values will be taken in sequence so if another layout of the data exists, such as each second cell or going up, it can be created by copying the relevant data to a new TsWorksheet.

The same is valid for the Y-Axis value, but applies to the properties YFirstCellCol, YFirstCellRow and YSelectionDirection. The property PointsNumber is valid for both axis.

Be careful that if a value could not be read from the worksheet it's value will be considered zero.

The values for Worksheet coordinates use the same values as the FPSpreadsheet API, that is, they are zero-based. So, for example, to select the cell B2 as the starting position for X-Axis values the following values should be used: XFirstCellCol = 1 and XFirstCellRow = 1

Example

A simple example is present in the fpspreadsheet svn repository, located at fpspreadsheet/examples/fpchart/fpchart.lpi

Please see the image below to see how the components are connected at design time. The TChart component can be edited by double-clicking. Then use the menus of the editor to add a new line series and connect this line series to our WorksheetChartSource by setting its Source property.

Fpschart design.png

To load the data from the grid and into the chart, a button was created with the following code. Notice that we can't just use any Grid, it has to be an FPSpreadsheet Grid, which has the class TsWorksheetGrid:

type
  
  { TFPSChartForm }

  TFPSChartForm = class(TForm)
    btnCreateGraphic: TButton;
    MyChart: TChart;
    FPSChartSource: TsWorksheetChartSource;
    MyChartLineSeries: TLineSeries;
    WorksheetGrid: TsWorksheetGrid;
    procedure btnCreateGraphicClick(Sender: TObject);
  private
    { private declarations }
  public
    { public declarations }
  end; 

...

procedure TFPSChartForm.btnCreateGraphicClick(Sender: TObject);
begin
  FPSChartSource.LoadFromWorksheetGrid(WorksheetGrid);
end;

And finally we can see how this works nicely in a running application in the picture below:

Fpschart run.png

See also