Package-level declarations

Types

Link copied to clipboard
data class CandlestickCartesianLayerMarkerTarget(val x: Double, val canvasX: Float, val entry: CandlestickCartesianLayerModel.Entry, val openingCanvasY: Float, val closingCanvasY: Float, val lowCanvasY: Float, val highCanvasY: Float, val openingColor: Int, val closingColor: Int, val lowColor: Int, val highColor: Int) : CartesianMarker.Target

Houses information on a CandlestickCartesianLayer candle to be marked.

Link copied to clipboard
Link copied to clipboard

Formats CartesianMarker values for display.

Link copied to clipboard

Allows for listening to CartesianMarker visibility changes.

Link copied to clipboard

Houses information on a set of ColumnCartesianLayer columns to be marked.

Link copied to clipboard
open class DefaultCartesianMarker(label: TextComponent, valueFormatter: CartesianMarkerValueFormatter = DefaultCartesianMarkerValueFormatter(), labelPosition: DefaultCartesianMarker.LabelPosition = LabelPosition.Top, indicator: (Int) -> Component? = null, indicatorSizeDp: Float = Defaults.MARKER_INDICATOR_SIZE, guideline: LineComponent? = null) : CartesianMarker

The default CartesianMarker implementation.

Link copied to clipboard
open class DefaultCartesianMarkerValueFormatter(decimalFormat: DecimalFormat = DecimalFormat("#.##;−#.##"), colorCode: Boolean = true) : CartesianMarkerValueFormatter

The default CartesianMarkerValueFormatter. The labels produced include the CartesianLayerModel.Entry instances’ y values, which are formatted via decimalFormat and, if colorCode is true, color-coded.

Link copied to clipboard

Houses information on a set of LineCartesianLayer points to be marked.