vico
vico copied to clipboard
A light and extensible chart library for Android.
### How to reproduce Use bottom axis item placer with custom spacing. ### Observed behavior Tick appeared for all steps while label correctly respect spacing value. ### Expected behavior Tick...
### How to reproduce 1. Create custom LineCartesianLayer.PointProvider 2. Create custom Shape 3. Create a CartesianChartHost 4. Add 2 Line series 5. Add custom point providers 6. See result ```...
### How to reproduce Create a MVP of line chart with `padding` and `LineCartesianLayer.LineFill.double`: ``` CartesianChartHost( modifier = Modifier.height(150.dp).padding(8.dp), chart = rememberCartesianChart( rememberLineCartesianLayer( lineProvider = LineCartesianLayer.LineProvider.series( LineCartesianLayer.rememberLine( fill = LineCartesianLayer.LineFill.double(...
### How to reproduce ``` fill = LineCartesianLayer.LineFill.double( topFill = fill(MaterialTheme.colorScheme.primary), bottomFill = fill(MaterialTheme.customColors.negative) ) ``` Data for this view: ``` xSeries = [19936, 19937, 19938, 19939, 19940, 19941, 19942]...