
commonMain.data.DataSetExtensions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chart-js Show documentation
Show all versions of chart-js Show documentation
A collection of drawing/charting utilities
package com.juul.krayon.chart.data
public fun DataSet.maxValue(): Float =
seriesData.maxOf { series -> series.maxOf { entity -> entity } }
public fun DataSet.minValue(): Float =
seriesData.minOf { series -> series.minOf { entity -> entity } }
© 2015 - 2025 Weber Informatics LLC | Privacy Policy