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 thesetExtraValuemethod on the instance being constructed.XYChartDataBuilder.extraValuePropertyApply(Consumer<ObjectProperty<Object>> op) Applies a function to theextraValuePropertyof the instance being constructed.A builder method that invokes thesetNodemethod on the instance being constructed.XYChartDataBuilder.nodePropertyApply(Consumer<ObjectProperty<Node>> op) Applies a function to thenodePropertyof the instance being constructed.A builder method that invokes thesetXValuemethod on the instance being constructed.XYChartDataBuilder.XValuePropertyApply(Consumer<ObjectProperty<X>> op) Applies a function to theXValuePropertyof the instance being constructed.A builder method that invokes thesetYValuemethod on the instance being constructed.XYChartDataBuilder.YValuePropertyApply(Consumer<ObjectProperty<Y>> op) Applies a function to theYValuePropertyof the instance being constructed.