LineChartView

fun LineChartView(dataSet: ChartDataSet, style: LineChartStyle = LineChartDefaults.style())

A composable function that displays a Line Chart for a single data set.

Parameters

dataSet

The data set to be displayed in the chart.

style

The style to be applied to the chart. If not provided, the default style will be used.


fun LineChartView(dataSet: MultiChartDataSet, style: LineChartStyle = LineChartDefaults.style())

A composable function that displays a Line Chart for multiple data sets.

Parameters

dataSet

The data sets to be displayed in the chart.

style

The style to be applied to the chart. If not provided, the default style will be used.