All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.data.DataSetExtensions.kt Maven / Gradle / Ivy

There is a newer version: 0.11.4
Show newest version
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