Uses of Class
io.github.sosuisen.jfxbuilder.controls.XYChartDataBuilder
Packages that use XYChartDataBuilder
-
Uses of XYChartDataBuilder in io.github.sosuisen.jfxbuilder.controls
Methods in io.github.sosuisen.jfxbuilder.controls that return XYChartDataBuilderModifier and TypeMethodDescriptionXYChartDataBuilder.apply
(Consumer<XYChart.Data<X, Y>> func) Applies a function to the Data instance being constructed.static <X,
Y> XYChartDataBuilder<X, Y> XYChartDataBuilder.create()
Returns an instance of theXYChartDataBuilder<X, Y>
.static <X,
Y> XYChartDataBuilder<X, Y> XYChartDataBuilder.create
(X xValue, Y yValue) Accepts the constructor arguments ofData(X, Y)
and returns an instance ofXYChartDataBuilder<X, Y>
.static <X,
Y> XYChartDataBuilder<X, Y> Accepts the constructor arguments ofData(X, Y, Object)
and returns an instance ofXYChartDataBuilder<X, Y>
.XYChartDataBuilder.extraValue
(Object value) A builder method that invokes thesetExtraValue
method on the instance being constructed.XYChartDataBuilder.extraValuePropertyApply
(Consumer<ObjectProperty<Object>> op) Applies a function to theextraValueProperty
of the instance being constructed.A builder method that invokes thesetNode
method on the instance being constructed.XYChartDataBuilder.nodePropertyApply
(Consumer<ObjectProperty<Node>> op) Applies a function to thenodeProperty
of the instance being constructed.A builder method that invokes thesetXValue
method on the instance being constructed.XYChartDataBuilder.XValuePropertyApply
(Consumer<ObjectProperty<X>> op) Applies a function to theXValueProperty
of the instance being constructed.A builder method that invokes thesetYValue
method on the instance being constructed.XYChartDataBuilder.YValuePropertyApply
(Consumer<ObjectProperty<Y>> op) Applies a function to theYValueProperty
of the instance being constructed.