Please enable JavaScript to use RhodeCode Enterprise
##// END OF EJS Templates
Marek Rosa
- Thu, 05 Jul 2012 06:50:08
Show More
0
src/axis/qabstractaxis.cpp
src/axis/qabstractaxis.cpp
+1
0
@@
-253,6
+253,7
QTCOMMERCIALCHART_BEGIN_NAMESPACE
253
253
*/
254
254
255
255
/*!
256
\internal
256
257
Constructs new axis object which is a child of \a parent. Ownership is taken by
257
258
QChart when axis added.
258
259
*/
0
src/axis/qbarcategoriesaxis.cpp
src/axis/qbarcategoriesaxis.cpp
+5
0
@@
-82,6
+82,11
QTCOMMERCIALCHART_BEGIN_NAMESPACE
82
82
Defines the maximum value on the axis.
83
83
*/
84
84
85
86
/*!
87
\fn void QBarCategoriesAxis::categoriesChanged()
88
Axis emits signal when the categories of the axis has changed.
89
*/
85
90
/*!
86
91
\fn void QBarCategoriesAxis::minChanged(const QString &min)
87
92
Axis emits signal when \a min of axis has changed.
0
src/qabstractseries.cpp
src/qabstractseries.cpp
+4
-4
@@
-152,10
+152,10
QChart* QAbstractSeries::chart() const
152
152
return d_ptr -> m_chart ;
153
153
}
154
154
155
void QAbstractSeries :: adjustView ()
156
{
157
//TODO:
158
}
155
// void QAbstractSeries::adjustView()
156
//{
157
// //TODO:
158
//}
159
159
160
160
/*!
161
161
\brief Sets the visibility of the series to true
0
src/qabstractseries.h
src/qabstractseries.h
0
-1
@@
-64,7
+64,6
public:
64
64
bool isVisible () const ;
65
65
QChart * chart () const ;
66
66
67
void adjustView ();
68
67
void show ();
69
68
void hide ();
70
69
0
src/qchart.cpp
src/qchart.cpp
+16
-2
@@
-379,15
+379,27
QRectF QChart::margins() const
379
379
return d_ptr -> m_presenter -> margins ();
380
380
}
381
381
382
/*!
383
Returns the the rect within which the drawing of the chart is done.
384
It does not include the area defines by margins.
385
*/
382
386
QRectF QChart :: plotArea () const
383
387
{
384
388
return d_ptr -> m_presenter -> geometry ();
385
389
}
386
390
391
///*!
392
// TODO: Dummy.
393
// Adjest the ranges of the axes so that all the data of the specified \a series is visible
394
// */
395
//void QChart::adjustViewToSeries(QAbstractSeries* series)
396
//{
397
// //
398
//}
399
387
400
/*!
388
401
Sets animation \a options for the chart
389
402
*/
390
391
403
void QChart :: setAnimationOptions ( AnimationOptions options )
392
404
{
393
405
d_ptr -> m_presenter -> setAnimationOptions ( options );
@@
-435,7
+447,9
QList<QAbstractSeries*> QChart::series() const
435
447
{
436
448
return d_ptr -> m_dataset -> series ();
437
449
}
438
450
/*!
451
Sets the minimum \a margins between the plot area (axes) and the edge of the chart widget.
452
*/
439
453
void QChart :: setMarginsMinimum ( const QRectF & margins )
440
454
{
441
455
d_ptr -> m_presenter -> setMarginsMinimum ( margins );
0
src/qchart.h
src/qchart.h
0
-2
@@
-111,8
+111,6
public:
111
111
void zoom ( qreal factor );
112
112
void scroll ( qreal dx , qreal dy );
113
113
114
void adjustViewToSeries ( QAbstractSeries * series = 0 );
115
116
114
QLegend * legend () const ;
117
115
118
116
void setMarginsMinimum ( const QRectF & margins );
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
g 0-9
Goto bookmarked items from 0-9
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository access permissions settings
t s
Toggle sidebar on some pages