##// END OF EJS Templates
Fix label visibility for category axis...
Fix label visibility for category axis Hide the labels in category axis that would be drawn on top of other labels. Task-number: QTRD-2525 Change-Id: Ic66a6b501821bbb14636229096d86d38301cf8b6 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>

File last commit:

r2574:599370d0561c
r2651:99ad874661ac
Show More
qbarlegendmarker.h
57 lines | 1.6 KiB | text/x-c | CLexer
/ src / legend / qbarlegendmarker.h
sauimone
tidying up legend marker code. Added QBarLegendMarker
r2174 /****************************************************************************
**
Miikka Heikkinen
Fixed the copyright year 2012 -> 2013
r2432 ** Copyright (C) 2013 Digia Plc
sauimone
tidying up legend marker code. Added QBarLegendMarker
r2174 ** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** This file is part of the Qt Enterprise Charts Add-on.
sauimone
tidying up legend marker code. Added QBarLegendMarker
r2174 **
** $QT_BEGIN_LICENSE$
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
sauimone
tidying up legend marker code. Added QBarLegendMarker
r2174 ** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
**
** If you have questions regarding the use of this file, please use
** contact form at http://qt.digia.com
** $QT_END_LICENSE$
**
****************************************************************************/
#ifndef QBARLEGENDMARKER_H
#define QBARLEGENDMARKER_H
#include <QChartGlobal>
#include <QLegendMarker>
#include <QAbstractBarSeries>
#include <QBarSet>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QLegend;
class QBarLegendMarkerPrivate;
class QTCOMMERCIALCHART_EXPORT QBarLegendMarker : public QLegendMarker
{
Q_OBJECT
public:
sauimone
optional series parameter to markers function. code style fixes
r2193 explicit QBarLegendMarker(QAbstractBarSeries *series, QBarSet *barset, QLegend *legend, QObject *parent = 0);
sauimone
tidying up legend marker code. Added QBarLegendMarker
r2174 virtual ~QBarLegendMarker();
sauimone
removed peer object solution. Introduced marker type solution
r2179 virtual LegendMarkerType type() { return LegendMarkerTypeBar; }
// Related series and barset
sauimone
pure virtual getter for series to QLegendMarker. In some cases user don't need the derived pointer. This removes the need to cast to derived marker type
r2181 virtual QAbstractBarSeries* series();
sauimone
removed peer object solution. Introduced marker type solution
r2179 QBarSet* barset();
sauimone
tidying up legend marker code. Added QBarLegendMarker
r2174
protected:
QBarLegendMarker(QBarLegendMarkerPrivate &d, QObject *parent = 0);
private:
Q_DECLARE_PRIVATE(QBarLegendMarker)
Q_DISABLE_COPY(QBarLegendMarker)
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QBARLEGENDMARKER_H