PieSlice QML Type

Represents a single slice in a pie series. More...

Import Statement: import QtGraphs
Instantiates: QPieSlice

Properties

Signals

Detailed Description

A pie slice has a value and a label. When the slice is added to a pie series, the PieSeries type calculates the percentage of the slice compared with the sum of all slices in the series to determine the actual size of the slice in the graph.

By default, the label is hidden. If it is visible, it can be either located outside the slice and connected to it with an arm or centered inside the slice either horizontally or in parallel with the tangential or normal of the slice's arc.

By default, the visual appearance of the slice is set by a theme, but the theme can be overridden by specifying slice properties. However, if the theme is changed after the slices are customized, all customization will be lost.

The PieSlice type should be used as a child of a PieSeries type. For example:

Alternatively, slices can be added to a pie series by using the PieSeries.append() method.

In that case, PieSeries.at() or PieSeries.find() can be used to access the properties of an individual PieSlice instance.

See also PieSeries.

Property Documentation

angleSpan : real [read-only]

The span of the slice in degrees. A full pie is 360 degrees, where 0 degrees is at 12 a'clock. Updated automatically once the slice is added to the series.


borderColor : color

The color used to draw the slice border.

See also borderWidth.


borderWidth : qreal

The width of the slice border. This is a convenience property for modifying the slice border width.

See also borderColor.


color : color

The fill color of the slice.


explodeDistanceFactor : real

Determines how far away from the pie the slice is exploded.

  • 1.0 means that the distance is the same as the radius.
  • 0.5 means that the distance is half of the radius.

By default, the distance is 0.15

See also exploded.


exploded : bool

Whether the slice is separated from the pie.

See also explodeDistanceFactor.


label : string

The label of the slice.

Note: The string can be HTML formatted.


labelArmLengthFactor : real

The length of the label arm. The factor is relative to the pie radius. For example:

  • 1.0 means that the length is the same as the radius.
  • 0.5 means that the length is half of the radius.

By default, the arm length is 0.15

See also labelVisible.


labelColor : color

The color used to draw the slice label.


labelFont : font

The font used for the slice label.

For more information, see font.

See also labelVisible and labelPosition.


labelPosition : enumeration

Describes the position of the slice label.

ConstantDescription
PieSlice.LabelPosition.OutsideThe label is located outside the slice connected to it with an arm. This is the default value.
PieSlice.LabelPosition.InsideHorizontalThe label is centered within the slice and laid out horizontally.
PieSlice.LabelPosition.InsideTangentialThe label is centered within the slice and rotated to be parallel with the tangential of the slice's arc.
PieSlice.LabelPosition.InsideNormalThe label is centered within the slice and rotated to be parallel with the normal of the slice's arc.

See also labelVisible.


labelVisible : bool

The visibility of the slice label. By default, the label is not visible.


percentage : real [read-only]

The percentage of the slice compared to the sum of all slices in the series. The actual value ranges from 0.0 to 1.0. Updated automatically once the slice is added to the series.


startAngle : real [read-only]

The starting angle of this slice in the series it belongs to. A full pie is 360 degrees, where 0 degrees is at 12 a'clock. Updated automatically once the slice is added to the series.


value : real

The value of the slice.

Note: A negative value is converted to a positive value.


Signal Documentation

angleSpanChanged()

This signal is emitted when the angle span of the slice changes.

Note: The corresponding handler is onAngleSpanChanged.

See also angleSpan.


borderColorChanged()

This signal is emitted when the slice border color changes.

Note: The corresponding handler is onBorderColorChanged.

See also borderColor.


borderWidthChanged()

This signal is emitted when the slice border width changes.

Note: The corresponding handler is onBorderWidthChanged.

See also borderWidth.


colorChanged()

This signal is emitted when the slice color changes.

Note: The corresponding handler is onColorChanged.


explodeDistanceFactorChanged()

This signal is emitted when the explode distance factor changes.

Note: The corresponding handler is onExplodeDistanceFactorChanged.

See also explodeDistanceFactor.


explodedChanged()

This signal is emitted when the exploded property changes.

Note: The corresponding handler is onExplodedChanged.

See also exploded.


labelArmLengthFactorChanged()

This signal is emitted when the label arm length factor changes.

Note: The corresponding handler is onLabelArmLengthFactorChanged.

See also labelArmLengthFactor.


labelChanged()

This signal is emitted when the slice label changes.

Note: The corresponding handler is onLabelChanged.

See also label.


labelColorChanged()

This signal is emitted when the slice label color changes.

Note: The corresponding handler is onLabelColorChanged.

See also labelColor.


labelFontChanged()

This signal is emitted when the label font of the slice changes.

Note: The corresponding handler is onLabelFontChanged.

See also labelFont.


labelFontChanged()

This signal is emitted when the label font changes.

Note: The corresponding handler is onLabelFontChanged.

See also labelFont.


labelPositionChanged()

This signal is emitted when the label position changes.

Note: The corresponding handler is onLabelPositionChanged.

See also labelPosition.


labelVisibleChanged()

This signal is emitted when the visibility of the slice label changes.

Note: The corresponding handler is onLabelVisibleChanged.

See also labelVisible.


percentageChanged()

This signal is emitted when the percentage of the slice changes.

Note: The corresponding handler is onPercentageChanged.

See also percentage.


startAngleChanged()

This signal is emitted when the starting angle of the slice changes.

Note: The corresponding handler is onStartAngleChanged.

See also startAngle.


valueChanged()

This signal is emitted when the slice value changes.

Note: The corresponding handler is onValueChanged.

See also value.


© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.