##// 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
qpielegendmarker.h
57 lines | 1.6 KiB | text/x-c | CLexer
/ src / legend / qpielegendmarker.h
sauimone
new legend example for testing new api. Currently using still the old one.
r2162 /****************************************************************************
**
Miikka Heikkinen
Fixed the copyright year 2012 -> 2013
r2432 ** Copyright (C) 2013 Digia Plc
sauimone
new legend example for testing new api. Currently using still the old one.
r2162 ** 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
new legend example for testing new api. Currently using still the old one.
r2162 **
** $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
new legend example for testing new api. Currently using still the old one.
r2162 ** 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 QPIELEGENDMARKER_H
#define QPIELEGENDMARKER_H
#include <QChartGlobal>
#include <QLegendMarker>
sauimone
tidying up legend marker code. Added QBarLegendMarker
r2174 #include <QPieSeries>
sauimone
new legend example for testing new api. Currently using still the old one.
r2162 #include <QPieSlice>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
sauimone
tidying up legend marker code. Added QBarLegendMarker
r2174 class QPieLegendMarkerPrivate;
sauimone
new legend example for testing new api. Currently using still the old one.
r2162 class QTCOMMERCIALCHART_EXPORT QPieLegendMarker : public QLegendMarker
{
Q_OBJECT
public:
sauimone
optional series parameter to markers function. code style fixes
r2193 explicit QPieLegendMarker(QPieSeries *series, QPieSlice *slice, QLegend *legend, QObject *parent = 0);
sauimone
layout work started
r2168 virtual ~QPieLegendMarker();
sauimone
new legend example for testing new api. Currently using still the old one.
r2162
sauimone
removed peer object solution. Introduced marker type solution
r2179 virtual LegendMarkerType type() { return LegendMarkerTypePie; }
// Related series and slice
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 QPieSeries* series();
sauimone
removed peer object solution. Introduced marker type solution
r2179 QPieSlice* slice();
sauimone
new legend example for testing new api. Currently using still the old one.
r2162
sauimone
refactoring
r2167 protected:
QPieLegendMarker(QPieLegendMarkerPrivate &d, QObject *parent = 0);
sauimone
Added createLegendMarkers to private series. This will replace old createLegendMarker method. Notice the s in new method name. PIMPL for QLegendMarker. Newlegend example updated a bit
r2163
sauimone
new legend example for testing new api. Currently using still the old one.
r2162 private:
sauimone
refactoring
r2167 Q_DECLARE_PRIVATE(QPieLegendMarker)
sauimone
new legend example for testing new api. Currently using still the old one.
r2162 Q_DISABLE_COPY(QPieLegendMarker)
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QPIELEGENDMARKER_H