Delphi-GCharts is a Delphi library of components to generate charts in uniGUI Framework using the Google Charts API.
Currently it supports the following Google Chart classes:
The library has two main components:
Delphi-GCharts has been coded and tested in Delphi 10.4 Sydney
with uniGUI Version: 1.90.0 build 1557
, but surely can be compiled into earlier or newer versions.
Install the visual component cfs.Charts.uniGUI.xxx.dpk that is in the package folder and also add to the library search path the sources folder.
Basic example to generate this Pie Chart:
unit Main;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics,
Controls, Forms, uniGUITypes, uniGUIAbstractClasses,
uniGUIClasses, uniGUIRegClasses, uniGUIForm, uniGUIBaseClasses,
cfs.GCharts.uniGUI;
type
TMainForm = class(TUniForm)
uniGChartsFrame1: TuniGChartsFrame;
procedure UniFormCreate(Sender: TObject);
private
public
end;
function MainForm: TMainForm;
implementation
{$R *.dfm}
uses
uniGUIVars, MainModule, cfs.GCharts; // <--- Add this unit
function MainForm: TMainForm;
begin
Result := TMainForm(UniMainModule.GetFormInstance(TMainForm));
end;
procedure TMainForm.UniFormCreate(Sender: TObject);
var
Chart: IcfsGChartProducer; //Defined as TInterfacedObject. No need try..finally
begin
Chart := TcfsGChartProducer.Create;
Chart.ClassChartType := TcfsGChartProducer.CLASS_PIE_CHART;
// Data
Chart.Data.DefineColumns([
TcfsGChartDataCol.Create(TcfsGChartDataType.gcdtString, 'Topping'),
TcfsGChartDataCol.Create(TcfsGChartDataType.gcdtNumber, 'Slices')
]);
Chart.Data.AddRow(['Mushrooms', 3]);
Chart.Data.AddRow(['Onions', 1]);
Chart.Data.AddRow(['Olives', 1]);
Chart.Data.AddRow(['Zucchini', 1]);
Chart.Data.AddRow(['Pepperoni', 2]);
// Options
Chart.Options.Title('How Much Pizza I Ate Last Night');
// Generate
uniGChartsFrame1.DocumentInit;
uniGChartsFrame1.DocumentSetBody('<div id="Chart" style="width:100%;height:100%;"></div>');
uniGChartsFrame1.DocumentGenerate('Chart', Chart);
uniGChartsFrame1.DocumentPost;
end;
The library includes in demos folder the GChartsDemo project with several examples that show how to build the different class charts.
When running the demo you can:
11.2 Alexandria
Please, if you use Delphi GCharts, "Star" this project in GitHub!
It cost nothing to you but helps other developers to reference the code.