styledPieChart
inline fun styledPieChart(data: ObservableList<PieChart.Data> = observableArrayList(), vararg styleClass: String, id: String? = null): PieChart
Create a styled PieChart.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun NodeContainer.styledPieChart(data: ObservableList<PieChart.Data> = observableArrayList(), vararg styleClass: String, id: String? = null): PieChart
Add a styled PieChart to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun styledPieChart(data: ObservableList<PieChart.Data> = observableArrayList(), vararg styleClass: String, id: String? = null, configuration: PieChart.() -> Unit): PieChart
Create a styled PieChart with configuration block.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.
inline fun NodeContainer.styledPieChart(data: ObservableList<PieChart.Data> = observableArrayList(), vararg styleClass: String, id: String? = null, configuration: PieChart.() -> Unit): PieChart
Add a styled PieChart with configuration block to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.