pyautark (soon)
Chart Types
AutkPlot supports six chart types through a single type discriminator. This page shows the two types that work directly on the input GeoJSON without a transform. The remaining types are most useful with a pre-render transform and are covered in Transformations.
Scatter plot
A scatter plot maps two numeric properties to the X and Y axes. It is ideal for exploring correlations and supports rectangular brush selection.
- Both
attributes.axis[0]andattributes.axis[1]must be numeric. - Emits
PlotEvent.BRUSHwhen the user drags a selection rectangle.
Parallel coordinates
Parallel coordinates show multiple numeric attributes at once. Each feature is drawn as a polyline that crosses every vertical axis at its value.
attributes.axisis an array of numeric property names.- Each axis can be brushed independently on the Y axis.
- Emits
PlotEvent.BRUSH_Y.
Charts that use transforms
The following chart types are usually paired with a transform. Live examples for each one are in the Transformations page.
| Chart | Typical transform | Use case |
|---|---|---|
barchart | sort, binning-1d | Compare magnitudes or show a histogram. |
linechart | reduce-series, binning-events | Show aggregated time series. |
table | sort | Inspect and sort raw values. |
heatmatrix | binning-2d | Show 2D density. |
Next steps
- Transformations — bar charts, line charts, tables, and heat matrices with transforms.
- Interactivity — click, brush, and programmatic selection.