commonMain.by.overpass.treemapchart.compose.LocalTreemapChartMeasurer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of treemap-chart-compose-desktop Show documentation
Show all versions of treemap-chart-compose-desktop Show documentation
Jetpack Compose (Multiplatform) treemap chart implementation
package by.overpass.treemapchart.compose
import androidx.compose.runtime.compositionLocalOf
import by.overpass.treemapchart.core.measure.TreemapChartMeasurer
import by.overpass.treemapchart.core.measure.squarified.SquarifiedMeasurer
val LocalTreemapChartMeasurer = compositionLocalOf { SquarifiedMeasurer() }