# Packages
Binary linechartdemo displays a linechart widget.
# Functions
AxesCellOpts set the cell options for the X and Y axes.
New returns a new line chart widget.
SeriesCellOpts sets the cell options for this series.
SeriesXLabels is used to provide custom labels for the X axis.
ValueFormatterRound is a formatter that will receive a float64 value and will round to the nearest value without decimals.
ValueFormatterRoundWithSuffix is a factory that returns a formatter that will receive a float64 value and will round to the nearest value without decimals adding a suffix to the final value string representation.
ValueFormatterSingleUnitDuration is a factory to create a custom duration in a single unit representation formatter based on a unit and the decimals to truncate.
ValueFormatterSingleUnitSeconds is a formatter that will receive seconds unit in the float64 argument and will return a pretty format in one single unit without decimals, it doesn't round, it truncates.
ValueFormatterSuffix is a factory that returns a formatter that will receive a float64 value and return a string representation with the desired number of decimal truncated and a suffix.
XAxisUnscaled when provided, stops the LineChart from rescaling the X axis when it can't fit all the values in the series, instead the LineCharts only displays the last n values that fit into its width.
XLabelCellOpts set the cell options for the labels on the X axis.
XLabelsHorizontal makes the labels under the X axis flow horizontally.
XLabelsVertical makes the labels under the X axis flow vertically.
YAxisAdaptive makes the Y axis adapt its base value depending on the provided series.
YAxisCustomScale when provided, the scale of the Y axis will be based on the specified minimum and maximum value instead of determining those from the LineChart series.
YAxisFormattedValues sets a value formatter for the Y axis values.
YLabelCellOpts set the cell options for the labels on the Y axis.
ZoomHightlightColor sets the background color of the area that is selected with mouse in order to zoom the linechart.
ZoomStepPercent sets the zooming step on each mouse scroll event as the percentage of the size of the X axis.
# Interfaces
Option is used to provide options to New().
SeriesOption is used to provide options to Series.
# Type aliases
ValueFormatter will be used to format values onto string based representation.