Getting started with TMS FNC Widget Trend Indicator
Prerequisites
- TMS FNC Core installed and the runtime package added to the project.
- TMS FNC Dashboard Pack design-time package registered in the IDE.
Add the control
- Drop
TTMSFNCWidgetTrendIndicatorfrom the TMS FNC Dashboard palette page onto a form. - Set
Valueto the headline figure andDescriptionTextto label it. - Fill the
Valuesseries and chooseGraphType(gtLineorgtBar).
The minimal card — a headline value and description:
procedure TForm1.SetupTrend;
begin
FTrend := TTMSFNCWidgetTrendIndicator.Create(Self);
FTrend.Parent := Self;
FTrend.SetBounds(20, 20, 280, 160);
FTrend.Value := 24358; // the headline figure shown large
FTrend.DescriptionText := 'Page Views, Product Catalog 1';
end;
Next steps
- Guides — the headline value and the trend graph.
- API reference — full class reference.