Package-level declarations

Functions

Link copied to clipboard
fun <Model : ChartEntryModel> Chart(chart: Chart<Model>, model: Model, modifier: Modifier = Modifier, startAxis: AxisRenderer<AxisPosition.Vertical.Start>? = null, topAxis: AxisRenderer<AxisPosition.Horizontal.Top>? = null, endAxis: AxisRenderer<AxisPosition.Vertical.End>? = null, bottomAxis: AxisRenderer<AxisPosition.Horizontal.Bottom>? = null, marker: Marker? = null, markerVisibilityChangeListener: MarkerVisibilityChangeListener? = null, legend: Legend? = null, chartScrollSpec: ChartScrollSpec<Model> = rememberChartScrollSpec(), isZoomEnabled: Boolean = true, oldModel: Model? = null, fadingEdges: FadingEdges? = null, autoScaleUp: AutoScaleUp = AutoScaleUp.Full, chartScrollState: ChartScrollState = rememberChartScrollState(), horizontalLayout: HorizontalLayout = HorizontalLayout.segmented(), getXStep: (Model) -> Float? = null)
fun <Model : ChartEntryModel> Chart(chart: Chart<Model>, chartModelProducer: ChartModelProducer<Model>, modifier: Modifier = Modifier, startAxis: AxisRenderer<AxisPosition.Vertical.Start>? = null, topAxis: AxisRenderer<AxisPosition.Horizontal.Top>? = null, endAxis: AxisRenderer<AxisPosition.Vertical.End>? = null, bottomAxis: AxisRenderer<AxisPosition.Horizontal.Bottom>? = null, marker: Marker? = null, markerVisibilityChangeListener: MarkerVisibilityChangeListener? = null, legend: Legend? = null, chartScrollSpec: ChartScrollSpec<Model> = rememberChartScrollSpec(), isZoomEnabled: Boolean = true, diffAnimationSpec: AnimationSpec<Float>? = defaultDiffAnimationSpec, runInitialAnimation: Boolean = true, fadingEdges: FadingEdges? = null, autoScaleUp: AutoScaleUp = AutoScaleUp.Full, chartScrollState: ChartScrollState = rememberChartScrollState(), horizontalLayout: HorizontalLayout = HorizontalLayout.segmented(), getXStep: (Model) -> Float? = null, placeholder: @Composable BoxScope.() -> Unit = {})

Displays a chart.