πNormal Line Plot
Introduction




Code Example
Last updated




Last updated
// X Axis Labels Example
val xAxisLabels = listOf("Jan" , "Feb" , "Mar").toCoordinateSet()
// This function draws the Line Plot
BasicLinearStrategy.LinePlot(
linearData = BasicDataStrategy(
linearDataSets = linearDataSet1, // List<LinearDataSet> object.
xAxisLabels = xAxisLabels // List<Coordinate<String>> object.
)
)