Chart
Defines the minimal set of properties and functions required by other parts of the library to draw a chart.
Inheritors
Types
Transforms Models into DrawingModels.
Provides a Chart’s ModelTransformer.
Properties
Overrides the minimum and maximum x-axis and y-axis values. In the case of ColumnCharts and LineCharts contained in ComposedCharts, these overrides can be applied to one vertical axis instead of both. Use ColumnChart.targetVerticalAxisPosition and LineChart.targetVerticalAxisPosition for this purpose.
A Collection of the ChartInsetters that are part of this Chart. Each ChartInsetter can influence the final layout of the chart and its components.
Links x-axis values to Marker.EntryModels. A Marker.EntryModel holds the data needed to draw a Marker.
The maximum value shown on the x-axis. If Model implements ChartEntryModel, and maxX is not null, this overrides ChartEntryModel.maxX.
The maximum value shown on the y-axis. If Model implements ChartEntryModel, and maxY is not null, this overrides ChartEntryModel.maxY.
The minimum value shown on the x-axis. If Model implements ChartEntryModel, and minX is not null, this overrides ChartEntryModel.minX.
The minimum value shown on the y-axis. If Model implements ChartEntryModel, and minY is not null, this overrides ChartEntryModel.minY.
Provides the Chart’s ModelTransformer.
Functions
Adds a Decoration to this Chart.
Adds each Decoration from decorations to this Chart.
Responsible for drawing any decorations placed above the chart, as well as persistent markers.
Responsible for drawing the chart itself and any decorations behind it.
Combines this Chart with another one to create a ComposedChart.
Removes a Decoration from this Chart.
Removes each Decoration from decorations from this Chart.
Replaces the current list of decorations with the provided decorations.
Replaces the current map of markers with the provided markers.
Updates the ChartValues stored in the provided ChartValuesManager instance to this Chart’s ChartValues.
Updates the chart’s MutableHorizontalDimensions instance.