Form

GPALChart

GPALChart renders data visually inside a GPALForm. Populate it with FillInFrom using an IGPALGrid<string> where the grid structure determines the series and data points. Charts are display-only - the user cannot interact with them to produce data output. Use GPALChart when you want to present automation results visually alongside interactive form controls.

Examples

GPAL Fluent: High-level fluent C# API

//GPALChart is best paired with Show() (non-modal) for dashboards that update while automation runs. Use FillInFrom to push new data to the chart as it becomes available.

// Chart populated from scraped data

GPAL.Form

.WithTitle("Results Dashboard")

.WithFormControl((Chart)GPAL.Chart

.WithText("Sales by Region"))

.FillInFrom(salesDataGrid)

.Show();

💬 Ask GPAL