- java.lang.Object
-
- javafx.scene.chart.PieChart.Data
-
-
Property Summary
Properties Type Property Description ReadOnlyObjectProperty<PieChart>
chart
The chart which this data belongs to.StringProperty
name
The name of the pie sliceReadOnlyObjectProperty<Node>
node
Readonly access to the node that represents the pie slice.DoubleProperty
pieValue
The value of the pie slice
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ReadOnlyObjectProperty<PieChart>
chartProperty()
The chart which this data belongs to.PieChart
getChart()
Gets the value of the property chart.String
getName()
Gets the value of the property name.Node
getNode()
Returns the node that represents the pie slice.double
getPieValue()
Gets the value of the property pieValue.StringProperty
nameProperty()
The name of the pie sliceReadOnlyObjectProperty<Node>
nodeProperty()
Readonly access to the node that represents the pie slice.DoubleProperty
pieValueProperty()
The value of the pie slicevoid
setName(String value)
Sets the value of the property name.void
setPieValue(double value)
Sets the value of the property pieValue.String
toString()
Returns a string representation of thisData
object.
-
-
-
Property Detail
-
chart
public final ReadOnlyObjectProperty<PieChart> chartProperty
The chart which this data belongs to.- See Also:
getChart()
-
name
public final StringProperty nameProperty
The name of the pie slice- See Also:
getName()
,setName(String)
-
pieValue
public final DoubleProperty pieValueProperty
The value of the pie slice- See Also:
getPieValue()
,setPieValue(double)
-
node
public ReadOnlyObjectProperty<Node> nodeProperty
Readonly access to the node that represents the pie slice. You can use this to add mouse event listeners etc.- See Also:
getNode()
-
-
Constructor Detail
-
Data
public Data(String name, double value)
Constructs a PieChart.Data object with the given name and value.- Parameters:
name
- name for Pievalue
- pie value
-
-
Method Detail
-
getChart
public final PieChart getChart()
Gets the value of the property chart.- Property description:
- The chart which this data belongs to.
-
chartProperty
public final ReadOnlyObjectProperty<PieChart> chartProperty()
The chart which this data belongs to.- See Also:
getChart()
-
setName
public final void setName(String value)
Sets the value of the property name.- Property description:
- The name of the pie slice
-
getName
public final String getName()
Gets the value of the property name.- Property description:
- The name of the pie slice
-
nameProperty
public final StringProperty nameProperty()
The name of the pie slice- See Also:
getName()
,setName(String)
-
getPieValue
public final double getPieValue()
Gets the value of the property pieValue.- Property description:
- The value of the pie slice
-
setPieValue
public final void setPieValue(double value)
Sets the value of the property pieValue.- Property description:
- The value of the pie slice
-
pieValueProperty
public final DoubleProperty pieValueProperty()
The value of the pie slice- See Also:
getPieValue()
,setPieValue(double)
-
getNode
public Node getNode()
Returns the node that represents the pie slice. You can use this to add mouse event listeners etc.- Returns:
- the node that represents the pie slice
-
nodeProperty
public ReadOnlyObjectProperty<Node> nodeProperty()
Readonly access to the node that represents the pie slice. You can use this to add mouse event listeners etc.- See Also:
getNode()
-
-