Warning

This section contains snippets that were automatically translated from C++ to Python and may contain errors.

Using Legend Markers#

Shows how to make use of legend markers.

Note

This is part of the Charts with Widgets Gallery example.

In this example we create an application which uses the QLegendMarker clicked signal to show/hide the corresponding series in a chart. The connect marker button connects a clicked signal from all markers in a legend to the handleMarkerClicked slot.

../_images/examples_legendmarkers.png

Our application has buttons for adding or removing a series in a chart and a button to connect or disconnect the legend markers clicked signal to our handler. In the image above we have connected the markers and clicked on one of them.

# Connect all markers to handler
markers = m_chart.legend().markers()
for marker in markers:
    # Disconnect possible existing connection to avoid multiple connections
    QObject::disconnect(marker.clicked,
                        self.handleMarkerClicked)
    marker.clicked.connect(
                     self.handleMarkerClicked)

Here we connect the markers in the legend to our handler. To avoid connecting the same marker more than once, we first disconnect it.

markers = m_chart.legend().markers()
for marker in markers:
    QObject::disconnect(marker.clicked,
                        self.handleMarkerClicked)

Here we disconnect all markers from our handler.

marker = QLegendMarker(sender())
Q_ASSERT(marker)

In our handler we first cast the sender of the event to the QLegendMarker .

switch (marker.type())

Then we check the type of the marker. This is required if we want to access the detailed methods of the marker and cast it to the correct type. If all we need is the pointer to QAbstractSeries , the casting isn’t necessary. In case of a pie or bar series, we may need the pointer to a related QPieSlice or QBarSet .

# Toggle visibility of series
marker.series().setVisible(not marker.series().isVisible())
# Turn legend marker back to visible, since hiding series also hides the marker
# and we don't want it to happen now.
marker.setVisible(True)

We want to toggle the visibility of the series, when the marker is clicked. To do so, we get the pointer to a related series from the marker and toggle its visibility. Since the legend marker follows the visibility of the series by default, we also set the marked back to visible. If we don’t do so, the marker will be invisible in the legend and we can’t click on it anymore.

# Dim the marker, if series is not visible
alpha = 1.0
if not marker.series().isVisible():
    alpha = 0.5
color = QColor()
brush = marker.labelBrush()
color = brush.color()
color.setAlphaF(alpha)
brush.setColor(color)
marker.setLabelBrush(brush)
brush = marker.brush()
color = brush.color()
color.setAlphaF(alpha)
brush.setColor(color)
marker.setBrush(brush)
pen = marker.pen()
color = pen.color()
color.setAlphaF(alpha)
pen.setColor(color)
marker.setPen(pen)

Instead of making the marker invisible when the series is hidden, we dim the color of the marker. Here we do it by modifying the color of the laberBrush.