Custom3DLabel QML Type
The Custom3DLabel type is for creating custom labels to be added to a graph. More...
Import Statement: | import QtDataVisualization 1.2 |
Since: | QtDataVisualization 1.1 |
Instantiates: | QCustom3DLabel |
Inherits: |
Properties
- backgroundColor : color
- backgroundEnabled : bool
- borderEnabled : bool
- facingCamera : bool
- font : font
- text : string
- textColor : color
Detailed Description
This type is for creating custom labels to be added to a graph. You can set text, font, position, scaling, rotation, and colors. You can also toggle borders and background for the label. Colors, borders and background are used from active theme unless any of them is set explicitly.
Note: In scaling, z has no effect. Setting the same x and y retains the original font dimensions.
Property Documentation
Color for the label background, if enabled. Defaults to "gray"
.
See also backgroundEnabled.
Enable label background. If set to false
, backgroundColor has no effect. Defaults to true
.
Forces the label to face camera always. Defaults to false
. If set to true
, rotation() has no effect.
font : font |
The font to be used for the label. Defaults to Font {family: "Arial"; pointSize: 20}
. Special formatting (for example outlined) is not supported.
Color for the label text. Also affects label border, if enabled. Defaults to "white"
.
See also borderEnabled.