IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

AreaSeries QML Type

Presents data in area charts.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

AreaSeries QML Type

  • Import Statement: import QtCharts 2.4

  • Inherits:: AbstractSeries

  • Instantiates:: QAreaSeries

Detailed Description

An area series is used to show quantitative data. It is based on a line series, in the way that the area between the boundary lines is emphasized with color. The LineSeries type defines the upper boundary of the area. The area chart is drawn using the bottom of the plot area as the lower boundary by default. Instead of the bottom of the plot area, the lower boundary can be specified by another line. In that case, the AreaSeries should use two LineSeries types.

The terms upper and lower boundary can be misleading in cases where the value of the lower boundary is greater than that of the upper boundary. The main point is that the area between these two boundary lines will be filled.

Image non disponible

The following QML shows how to create a simple area chart:

 
Sélectionnez
ChartView {
    title: "NHL All-Star Team Players"
    anchors.fill: parent
    antialiasing: true

    // Define x-axis to be used with the series instead of default one
    ValueAxis {
        id: valueAxis
        min: 2000
        max: 2011
        tickCount: 12
        labelFormat: "%.0f"
    }

    AreaSeries {
        name: "Russian"
        axisX: valueAxis
        upperSeries: LineSeries {
            XYPoint { x: 2000; y: 1 }
            XYPoint { x: 2001; y: 1 }
            XYPoint { x: 2002; y: 1 }
            XYPoint { x: 2003; y: 1 }
            XYPoint { x: 2004; y: 1 }
            XYPoint { x: 2005; y: 0 }
            XYPoint { x: 2006; y: 1 }
            XYPoint { x: 2007; y: 1 }
            XYPoint { x: 2008; y: 4 }
            XYPoint { x: 2009; y: 3 }
            XYPoint { x: 2010; y: 2 }
            XYPoint { x: 2011; y: 1 }
        }
    }

Adding the same line series to a chart and area series is not supported. The series used as boundary lines should be defined only for the area series.

Property Documentation

 

axisAngular : AbstractAxis

The angular axis used for the series, drawn around the polar chart view.

See Also

See also axisX, PolarChartView

axisRadial : AbstractAxis

The radial axis used for the series, drawn inside the polar chart view.

See Also

See also axisY, PolarChartView

axisX : AbstractAxis

The x-axis used for the series. If you leave both axisX and axisXTop undefined, a value axis is created for the series.

See Also

See also axisXTop, ValueAxis

axisXTop : AbstractAxis

The x-axis used for the series, drawn on top of the chart view.

You can only provide either axisX or axisXTop, not both.

See Also

See also axisX

axisY : AbstractAxis

The y-axis used for the series. If you leave both axisY and axisYRight undefined, a value axis is created for the series.

See Also

See also axisYRight, ValueAxis

axisYRight : AbstractAxis

The y-axis used for the series, drawn to the right on the chart view.

You can only provide either axisY or axisYRight, not both.

See Also

See also axisY

borderColor : color

Line (pen) color of the series.

borderWidth : real

The width of the border line. By default, the width is 2.0.

brush : brush

The brush used to draw to draw the line for this series.

brushFilename : QString

The name of the file used as a brush image for the series.

color : color

Fill (brush) color of the series.

[read-only] lowerSeries : LineSeries

The lower one of the two line series used to define area series boundaries.

If AreaSeries was constructed without a lowerSeries, this is null.

pointLabelsClipping : bool

Defines the clipping for data point labels. True by default. The labels on the edge of the plot area are cut when clipping is enabled.

See Also

pointLabelsColor : font

Defines the color used for data point labels. By default, the color is the color of the brush defined for labels in the theme.

See Also

pointLabelsFont : font

Defines the font used for data point labels.

See Also

pointLabelsFormat : string

The format used for showing labels with series points.

See Also

pointLabelsVisible : bool

Defines the visibility of data point labels.

See Also

[read-only] upperSeries : LineSeries

The upper one of the two line series used to define area series boundaries.

Signal Documentation

 

clicked(point point)

This signal is emitted when the user triggers a press on point by clicking it in an area chart.

The corresponding signal handler is onClicked.

The corresponding handler is onClicked.

See Also

doubleClicked(point point)

This signal is emitted when the user triggers the first press in an area chart by doubleclicking point.

The corresponding signal handler is onDoubleClicked.

The corresponding handler is onDoubleClicked.

See Also

See also pressed, released, clicked

hovered(point point, bool state)

This signal is emitted when the user hovers the mouse cursor over a series or moves it away from the series. point shows the origin (coordinate) of the hover event. state is true when the cursor hovers over the series and turns false when it moves away from the series.

The corresponding signal handler is onHovered.

The corresponding handler is onHovered.

pressed(point point)

This signal is emitted when the user presses the point specified by point in an area chart.

The corresponding signal handler is onPressed.

The corresponding handler is onPressed.

See Also

released(point point)

This signal is emitted when the user releases a press that was triggered on point in an area chart.

The corresponding signal handler is onReleased.

The corresponding handler is onReleased.

See Also

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+