styledPieChart

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.


fun NodeManager.styledPieChart(data: ObservableList<PieChart.Data> = observableArrayList(), vararg styleClass: String, id: String? = null): PieChart

Add a styled PieChart to this manager.

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 NodeManager.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 manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.