
commonMain.render.LabelFactory.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.render
/** Generator for chart labels. */
public fun interface LabelFactory {
/** Generate a label. If this returns `null`, the label is omitted. */
public fun createLabel(value: T): CharSequence?
}
/** Type alias of LabelFactory for documentation purposes: the value represents an index. */
public typealias IndexLabelFactory = LabelFactory
© 2015 - 2025 Weber Informatics LLC | Privacy Policy