This file is indexed.

/usr/share/qt5/doc/qtcharts/qabstractaxis.html is in qtcharts5-doc-html 5.9.5-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- qabstractaxis.cpp -->
  <title>QAbstractAxis Class | Qt Charts 5.9</title>
  <link rel="stylesheet" type="text/css" href="style/offline-simple.css" />
  <script type="text/javascript">
    document.getElementsByTagName("link").item(0).setAttribute("href", "style/offline.css");
    // loading style sheet breaks anchors that were jumped to before
    // so force jumping to anchor again
    setTimeout(function() {
        var anchor = location.hash;
        // need to jump to different anchor first (e.g. none)
        location.hash = "#";
        setTimeout(function() {
            location.hash = anchor;
        }, 0);
    }, 0);
  </script>
</head>
<body>
<div class="header" id="qtdocheader">
  <div class="main">
    <div class="main-rounded">
      <div class="navigationbar">
        <table><tr>
<td >Qt 5.9</td><td ><a href="qtcharts-index.html">Qt Charts</a></td><td ><a href="qt-charts-module.html">C++ Classes</a></td><td >QAbstractAxis</td></tr></table><table class="buildversion"><tr>
<td id="buildversion" width="100%" align="right">Qt 5.9.5 Reference Documentation</td>
        </tr></table>
      </div>
    </div>
<div class="content">
<div class="line">
<div class="content mainContent">
<div class="sidebar">
<div class="toc">
<h3><a name="toc">Contents</a></h3>
<ul>
<li class="level1"><a href="#public-types">Public Types</a></li>
<li class="level1"><a href="#properties">Properties</a></li>
<li class="level1"><a href="#public-functions">Public Functions</a></li>
<li class="level1"><a href="#signals">Signals</a></li>
<li class="level1"><a href="#details">Detailed Description</a></li>
</ul>
</div>
<div class="sidebar-content" id="sidebar-content"></div></div>
<h1 class="title">QAbstractAxis Class</h1>
<!-- $$$QAbstractAxis-brief -->
<p>The <a href="qabstractaxis.html">QAbstractAxis</a> class is a base class used for specialized axis classes. <a href="#details">More...</a></p>
<!-- @@@QAbstractAxis -->
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft rightAlign topAlign"> Header:</td><td class="memItemRight bottomAlign">   <span class="preprocessor">#include &lt;QAbstractAxis&gt;</span>
</td></tr><tr><td class="memItemLeft rightAlign topAlign"> Instantiated By:</td><td class="memItemRight bottomAlign"> <a href="qml-qtcharts-abstractaxis.html">AbstractAxis</a></td></tr><tr><td class="memItemLeft rightAlign topAlign"> Inherited By:</td><td class="memItemRight bottomAlign"> <p><a href="qbarcategoryaxis.html">QBarCategoryAxis</a>, <a href="qdatetimeaxis.html">QDateTimeAxis</a>, <a href="qlogvalueaxis.html">QLogValueAxis</a>, and <a href="qvalueaxis.html">QValueAxis</a></p>
</td></tr></table></div><ul>
<li><a href="qabstractaxis-members.html">List of all members, including inherited members</a></li>
</ul>
<a name="public-types"></a>
<h2 id="public-types">Public Types</h2>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft rightAlign topAlign"> enum </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#AxisType-enum">AxisType</a></b> { AxisTypeNoAxis, AxisTypeValue, AxisTypeBarCategory, AxisTypeCategory, AxisTypeDateTime, AxisTypeLogValue }</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> flags </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#AxisType-enum">AxisTypes</a></b></td></tr>
</table></div>
<a name="properties"></a>
<h2 id="properties">Properties</h2>
<div class="table"><table class="propsummary">
<tr><td class="topAlign"><ul>
<li class="fn"><b><a href="qabstractaxis.html#alignment-prop">alignment</a></b> : const Qt::Alignment</li>
<li class="fn"><b><a href="qabstractaxis.html#color-prop">color</a></b> : QColor</li>
<li class="fn"><b><a href="qabstractaxis.html#gridLineColor-prop">gridLineColor</a></b> : QColor</li>
<li class="fn"><b><a href="qabstractaxis.html#gridLinePen-prop">gridLinePen</a></b> : QPen</li>
<li class="fn"><b><a href="qabstractaxis.html#gridVisible-prop">gridVisible</a></b> : bool</li>
<li class="fn"><b><a href="qabstractaxis.html#labelsAngle-prop">labelsAngle</a></b> : int</li>
<li class="fn"><b><a href="qabstractaxis.html#labelsBrush-prop">labelsBrush</a></b> : QBrush</li>
<li class="fn"><b><a href="qabstractaxis.html#labelsColor-prop">labelsColor</a></b> : QColor</li>
<li class="fn"><b><a href="qabstractaxis.html#labelsFont-prop">labelsFont</a></b> : QFont</li>
<li class="fn"><b><a href="qabstractaxis.html#labelsVisible-prop">labelsVisible</a></b> : bool</li>
<li class="fn"><b><a href="qabstractaxis.html#linePen-prop">linePen</a></b> : QPen</li>
<li class="fn"><b><a href="qabstractaxis.html#lineVisible-prop">lineVisible</a></b> : bool</li>
<li class="fn"><b><a href="qabstractaxis.html#minorGridLineColor-prop">minorGridLineColor</a></b> : QColor</li>
<li class="fn"><b><a href="qabstractaxis.html#minorGridLinePen-prop">minorGridLinePen</a></b> : QPen</li>
</ul></td><td class="topAlign"><ul>
<li class="fn"><b><a href="qabstractaxis.html#minorGridVisible-prop">minorGridVisible</a></b> : bool</li>
<li class="fn"><b><a href="qabstractaxis.html#orientation-prop">orientation</a></b> : const Qt::Orientation</li>
<li class="fn"><b><a href="qabstractaxis.html#reverse-prop">reverse</a></b> : bool</li>
<li class="fn"><b><a href="qabstractaxis.html#shadesBorderColor-prop">shadesBorderColor</a></b> : QColor</li>
<li class="fn"><b><a href="qabstractaxis.html#shadesBrush-prop">shadesBrush</a></b> : QBrush</li>
<li class="fn"><b><a href="qabstractaxis.html#shadesColor-prop">shadesColor</a></b> : QColor</li>
<li class="fn"><b><a href="qabstractaxis.html#shadesPen-prop">shadesPen</a></b> : QPen</li>
<li class="fn"><b><a href="qabstractaxis.html#shadesVisible-prop">shadesVisible</a></b> : bool</li>
<li class="fn"><b><a href="qabstractaxis.html#titleBrush-prop">titleBrush</a></b> : QBrush</li>
<li class="fn"><b><a href="qabstractaxis.html#titleFont-prop">titleFont</a></b> : QFont</li>
<li class="fn"><b><a href="qabstractaxis.html#titleText-prop">titleText</a></b> : QString</li>
<li class="fn"><b><a href="qabstractaxis.html#titleVisible-prop">titleVisible</a></b> : bool</li>
<li class="fn"><b><a href="qabstractaxis.html#visible-prop">visible</a></b> : bool</li>
</ul>
</td></tr>
</table></div>
<a name="public-functions"></a>
<h2 id="public-functions">Public Functions</h2>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft rightAlign topAlign"> </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#dtor.QAbstractAxis">~QAbstractAxis</a></b>()</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> Qt::Alignment </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#alignment-prop">alignment</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> QColor </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#gridLineColor-prop">gridLineColor</a></b>()</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> QPen </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#gridLinePen">gridLinePen</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#hide">hide</a></b>()</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#gridVisible-prop">isGridLineVisible</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#lineVisible-prop">isLineVisible</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#minorGridVisible-prop">isMinorGridLineVisible</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#reverse-prop">isReverse</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#titleVisible-prop">isTitleVisible</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#visible-prop">isVisible</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> int </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#labelsAngle-prop">labelsAngle</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> QBrush </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#labelsBrush">labelsBrush</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> QColor </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#labelsColor-prop">labelsColor</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> QFont </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#labelsFont">labelsFont</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#labelsVisible-prop">labelsVisible</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> QPen </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#linePen">linePen</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> QColor </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#color-prop">linePenColor</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> QColor </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#minorGridLineColor-prop">minorGridLineColor</a></b>()</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> QPen </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#minorGridLinePen-prop">minorGridLinePen</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> Qt::Orientation </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#orientation">orientation</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#gridLineColor-prop">setGridLineColor</a></b>(const QColor &amp;<i>color</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#setGridLinePen">setGridLinePen</a></b>(const QPen &amp;<i>pen</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#gridVisible-prop">setGridLineVisible</a></b>(bool <i>visible</i> = true)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#labelsAngle-prop">setLabelsAngle</a></b>(int <i>angle</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#setLabelsBrush">setLabelsBrush</a></b>(const QBrush &amp;<i>brush</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#labelsColor-prop">setLabelsColor</a></b>(QColor <i>color</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#setLabelsFont">setLabelsFont</a></b>(const QFont &amp;<i>font</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#labelsVisible-prop">setLabelsVisible</a></b>(bool <i>visible</i> = true)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#setLinePen">setLinePen</a></b>(const QPen &amp;<i>pen</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#color-prop">setLinePenColor</a></b>(QColor <i>color</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#setLineVisible">setLineVisible</a></b>(bool <i>visible</i> = true)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#setMax">setMax</a></b>(const QVariant &amp;<i>max</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#setMin">setMin</a></b>(const QVariant &amp;<i>min</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#minorGridLineColor-prop">setMinorGridLineColor</a></b>(const QColor &amp;<i>color</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#minorGridLinePen-prop">setMinorGridLinePen</a></b>(const QPen &amp;<i>pen</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#minorGridVisible-prop">setMinorGridLineVisible</a></b>(bool <i>visible</i> = true)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#setRange">setRange</a></b>(const QVariant &amp;<i>min</i>, const QVariant &amp;<i>max</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#reverse-prop">setReverse</a></b>(bool <i>reverse</i> = true)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#shadesBorderColor-prop">setShadesBorderColor</a></b>(QColor <i>color</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#setShadesBrush">setShadesBrush</a></b>(const QBrush &amp;<i>brush</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#shadesColor-prop">setShadesColor</a></b>(QColor <i>color</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#setShadesPen">setShadesPen</a></b>(const QPen &amp;<i>pen</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#shadesVisible-prop">setShadesVisible</a></b>(bool <i>visible</i> = true)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#setTitleBrush">setTitleBrush</a></b>(const QBrush &amp;<i>brush</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#setTitleFont">setTitleFont</a></b>(const QFont &amp;<i>font</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#titleText-prop">setTitleText</a></b>(const QString &amp;<i>title</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#titleVisible-prop">setTitleVisible</a></b>(bool <i>visible</i> = true)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#setVisible">setVisible</a></b>(bool <i>visible</i> = true)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> QColor </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#shadesBorderColor-prop">shadesBorderColor</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> QBrush </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#shadesBrush">shadesBrush</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> QColor </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#shadesColor-prop">shadesColor</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> QPen </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#shadesPen">shadesPen</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#shadesVisible-prop">shadesVisible</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#show">show</a></b>()</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> QBrush </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#titleBrush">titleBrush</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> QFont </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#titleFont">titleFont</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> QString </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#titleText-prop">titleText</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> virtual AxisType </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#type">type</a></b>() const = 0</td></tr>
</table></div>
<a name="signals"></a>
<h2 id="signals">Signals</h2>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#colorChanged">colorChanged</a></b>(QColor <i>color</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#gridLineColorChanged">gridLineColorChanged</a></b>(const QColor &amp;<i>color</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#gridLinePenChanged">gridLinePenChanged</a></b>(const QPen &amp;<i>pen</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#gridVisibleChanged">gridVisibleChanged</a></b>(bool <i>visible</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#labelsAngleChanged">labelsAngleChanged</a></b>(int <i>angle</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#labelsBrushChanged">labelsBrushChanged</a></b>(const QBrush &amp;<i>brush</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#labelsColorChanged">labelsColorChanged</a></b>(QColor <i>color</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#labelsFontChanged">labelsFontChanged</a></b>(const QFont &amp;<i>font</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#labelsVisibleChanged">labelsVisibleChanged</a></b>(bool <i>visible</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#linePenChanged">linePenChanged</a></b>(const QPen &amp;<i>pen</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#lineVisibleChanged">lineVisibleChanged</a></b>(bool <i>visible</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#minorGridLineColorChanged">minorGridLineColorChanged</a></b>(const QColor &amp;<i>color</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#minorGridLinePenChanged">minorGridLinePenChanged</a></b>(const QPen &amp;<i>pen</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#minorGridVisibleChanged">minorGridVisibleChanged</a></b>(bool <i>visible</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#reverse-prop">reverseChanged</a></b>(bool <i>reverse</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#shadesBorderColorChanged">shadesBorderColorChanged</a></b>(QColor <i>color</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#shadesBrushChanged">shadesBrushChanged</a></b>(const QBrush &amp;<i>brush</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#shadesColorChanged">shadesColorChanged</a></b>(QColor <i>color</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#shadesPenChanged">shadesPenChanged</a></b>(const QPen &amp;<i>pen</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#shadesVisibleChanged">shadesVisibleChanged</a></b>(bool <i>visible</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#titleBrushChanged">titleBrushChanged</a></b>(const QBrush &amp;<i>brush</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#titleFontChanged">titleFontChanged</a></b>(const QFont &amp;<i>font</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#titleTextChanged">titleTextChanged</a></b>(const QString &amp;<i>text</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#titleVisibleChanged">titleVisibleChanged</a></b>(bool <i>visible</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qabstractaxis.html#visibleChanged">visibleChanged</a></b>(bool <i>visible</i>)</td></tr>
</table></div>
<a name="details"></a>
<!-- $$$QAbstractAxis-description -->
<div class="descr">
<h2 id="details">Detailed Description</h2>
<p>The <a href="qabstractaxis.html">QAbstractAxis</a> class is a base class used for specialized axis classes.</p>
<p>Each series can be bound to one or more horizontal and vertical axes, but mixing axis types that would result in different domains is not supported, such as specifying <a href="qvalueaxis.html">QValueAxis</a> and <a href="qlogvalueaxis.html">QLogValueAxis</a> on the same orientation.</p>
<p>The properties and visibility of various axis elements, such as axis line, title, labels, grid lines, and shades, can be individually controlled.</p>
</div>
<!-- @@@QAbstractAxis -->
<div class="types">
<h2>Member Type Documentation</h2>
<!-- $$$AxisType$$$AxisTypeNoAxis$$$AxisTypeValue$$$AxisTypeBarCategory$$$AxisTypeCategory$$$AxisTypeDateTime$$$AxisTypeLogValue -->
<h3 class="flags" id="AxisType-enum"><a name="AxisType-enum"></a>enum QAbstractAxis::<span class="name">AxisType</span><br/>flags QAbstractAxis::<span class="name">AxisTypes</span></h3>
<p>This enum type specifies the type of the axis object.</p>
<div class="table"><table class="valuelist"><tr><th class="tblConst">Constant</th><th class="tblVal">Value</th></tr>
<tr><td class="topAlign"><code>QAbstractAxis::AxisTypeNoAxis</code></td><td class="topAlign tblval"><code>0x0</code></td></tr>
<tr><td class="topAlign"><code>QAbstractAxis::AxisTypeValue</code></td><td class="topAlign tblval"><code>0x1</code></td></tr>
<tr><td class="topAlign"><code>QAbstractAxis::AxisTypeBarCategory</code></td><td class="topAlign tblval"><code>0x2</code></td></tr>
<tr><td class="topAlign"><code>QAbstractAxis::AxisTypeCategory</code></td><td class="topAlign tblval"><code>0x4</code></td></tr>
<tr><td class="topAlign"><code>QAbstractAxis::AxisTypeDateTime</code></td><td class="topAlign tblval"><code>0x8</code></td></tr>
<tr><td class="topAlign"><code>QAbstractAxis::AxisTypeLogValue</code></td><td class="topAlign tblval"><code>0x10</code></td></tr>
</table></div>
<p>The AxisTypes type is a typedef for <a href="">QFlags</a>&lt;AxisType&gt;. It stores an OR combination of AxisType values.</p>
<!-- @@@AxisType -->
</div>
<div class="prop">
<h2>Property Documentation</h2>
<!-- $$$alignment-prop$$$alignment -->
<h3 class="fn" id="alignment-prop"><a name="alignment-prop"></a><span class="name">alignment</span> : const <span class="type">Qt::Alignment</span></h3>
<p>This property holds the alignment of the axis.</p>
<p>Can be Qt::AlignLeft, Qt::AlignRight, Qt::AlignBottom, or Qt::AlignTop.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> Qt::Alignment </td><td class="memItemRight bottomAlign"><span class="name"><b>alignment</b></span>() const</td></tr>
</table></div>
<!-- @@@alignment -->
<!-- $$$color-prop$$$linePenColor$$$setLinePenColorQColor$$$colorChangedQColor -->
<h3 class="fn" id="color-prop"><a name="color-prop"></a><span class="name">color</span> : <span class="type">QColor</span></h3>
<p>This property holds the color of the axis and tick marks.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> QColor </td><td class="memItemRight bottomAlign"><span class="name"><b>linePenColor</b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b>setLinePenColor</b></span>(QColor <i>color</i>)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#colorChanged">colorChanged</a></b></span>(QColor <i>color</i>)</td></tr>
</table></div>
<!-- @@@color -->
<!-- $$$gridLineColor-prop$$$gridLineColor$$$setGridLineColorconstQColor&$$$gridLineColorChangedconstQColor& -->
<h3 class="fn" id="gridLineColor-prop"><a name="gridLineColor-prop"></a><span class="name">gridLineColor</span> : <span class="type">QColor</span></h3>
<p>This property holds the color of the grid line.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> QColor </td><td class="memItemRight bottomAlign"><span class="name"><b>gridLineColor</b></span>()</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b>setGridLineColor</b></span>(const QColor &amp;<i>color</i>)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#gridLineColorChanged">gridLineColorChanged</a></b></span>(const QColor &amp;<i>color</i>)</td></tr>
</table></div>
<!-- @@@gridLineColor -->
<!-- $$$gridLinePen-prop$$$gridLinePen$$$setGridLinePenconstQPen&$$$gridLinePenChangedconstQPen& -->
<h3 class="fn" id="gridLinePen-prop"><a name="gridLinePen-prop"></a><span class="name">gridLinePen</span> : <span class="type">QPen</span></h3>
<p>This property holds the pen used to draw the grid line.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> QPen </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#gridLinePen">gridLinePen</a></b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#setGridLinePen">setGridLinePen</a></b></span>(const QPen &amp;<i>pen</i>)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#gridLinePenChanged">gridLinePenChanged</a></b></span>(const QPen &amp;<i>pen</i>)</td></tr>
</table></div>
<!-- @@@gridLinePen -->
<!-- $$$gridVisible-prop$$$isGridLineVisible$$$setGridLineVisiblebool$$$gridVisibleChangedbool -->
<h3 class="fn" id="gridVisible-prop"><a name="gridVisible-prop"></a><span class="name">gridVisible</span> : <span class="type">bool</span></h3>
<p>This property holds the visibility of the grid lines.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> bool </td><td class="memItemRight bottomAlign"><span class="name"><b>isGridLineVisible</b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b>setGridLineVisible</b></span>(bool <i>visible</i> = true)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#gridVisibleChanged">gridVisibleChanged</a></b></span>(bool <i>visible</i>)</td></tr>
</table></div>
<!-- @@@gridVisible -->
<!-- $$$labelsAngle-prop$$$labelsAngle$$$setLabelsAngleint$$$labelsAngleChangedint -->
<h3 class="fn" id="labelsAngle-prop"><a name="labelsAngle-prop"></a><span class="name">labelsAngle</span> : <span class="type">int</span></h3>
<p>This property holds the angle of the axis labels in degrees.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> int </td><td class="memItemRight bottomAlign"><span class="name"><b>labelsAngle</b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b>setLabelsAngle</b></span>(int <i>angle</i>)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#labelsAngleChanged">labelsAngleChanged</a></b></span>(int <i>angle</i>)</td></tr>
</table></div>
<!-- @@@labelsAngle -->
<!-- $$$labelsBrush-prop$$$labelsBrush$$$setLabelsBrushconstQBrush&$$$labelsBrushChangedconstQBrush& -->
<h3 class="fn" id="labelsBrush-prop"><a name="labelsBrush-prop"></a><span class="name">labelsBrush</span> : <span class="type">QBrush</span></h3>
<p>This property holds the brush used to draw the labels.</p>
<p>Only the color of the brush is relevant.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> QBrush </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#labelsBrush">labelsBrush</a></b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#setLabelsBrush">setLabelsBrush</a></b></span>(const QBrush &amp;<i>brush</i>)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#labelsBrushChanged">labelsBrushChanged</a></b></span>(const QBrush &amp;<i>brush</i>)</td></tr>
</table></div>
<!-- @@@labelsBrush -->
<!-- $$$labelsColor-prop$$$labelsColor$$$setLabelsColorQColor$$$labelsColorChangedQColor -->
<h3 class="fn" id="labelsColor-prop"><a name="labelsColor-prop"></a><span class="name">labelsColor</span> : <span class="type">QColor</span></h3>
<p>This property holds the color of the axis labels.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> QColor </td><td class="memItemRight bottomAlign"><span class="name"><b>labelsColor</b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b>setLabelsColor</b></span>(QColor <i>color</i>)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#labelsColorChanged">labelsColorChanged</a></b></span>(QColor <i>color</i>)</td></tr>
</table></div>
<!-- @@@labelsColor -->
<!-- $$$labelsFont-prop$$$labelsFont$$$setLabelsFontconstQFont&$$$labelsFontChangedconstQFont& -->
<h3 class="fn" id="labelsFont-prop"><a name="labelsFont-prop"></a><span class="name">labelsFont</span> : <span class="type">QFont</span></h3>
<p>This property holds the font of the axis labels.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> QFont </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#labelsFont">labelsFont</a></b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#setLabelsFont">setLabelsFont</a></b></span>(const QFont &amp;<i>font</i>)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#labelsFontChanged">labelsFontChanged</a></b></span>(const QFont &amp;<i>font</i>)</td></tr>
</table></div>
<!-- @@@labelsFont -->
<!-- $$$labelsVisible-prop$$$labelsVisible$$$setLabelsVisiblebool$$$labelsVisibleChangedbool -->
<h3 class="fn" id="labelsVisible-prop"><a name="labelsVisible-prop"></a><span class="name">labelsVisible</span> : <span class="type">bool</span></h3>
<p>This property holds whether axis labels are visible.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> bool </td><td class="memItemRight bottomAlign"><span class="name"><b>labelsVisible</b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b>setLabelsVisible</b></span>(bool <i>visible</i> = true)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#labelsVisibleChanged">labelsVisibleChanged</a></b></span>(bool <i>visible</i>)</td></tr>
</table></div>
<!-- @@@labelsVisible -->
<!-- $$$linePen-prop$$$linePen$$$setLinePenconstQPen&$$$linePenChangedconstQPen& -->
<h3 class="fn" id="linePen-prop"><a name="linePen-prop"></a><span class="name">linePen</span> : <span class="type">QPen</span></h3>
<p>This property holds the pen used to draw the line.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> QPen </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#linePen">linePen</a></b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#setLinePen">setLinePen</a></b></span>(const QPen &amp;<i>pen</i>)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#linePenChanged">linePenChanged</a></b></span>(const QPen &amp;<i>pen</i>)</td></tr>
</table></div>
<!-- @@@linePen -->
<!-- $$$lineVisible-prop$$$isLineVisible$$$setLineVisiblebool$$$lineVisibleChangedbool -->
<h3 class="fn" id="lineVisible-prop"><a name="lineVisible-prop"></a><span class="name">lineVisible</span> : <span class="type">bool</span></h3>
<p>This property holds the visibility of the axis line.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> bool </td><td class="memItemRight bottomAlign"><span class="name"><b>isLineVisible</b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#setLineVisible">setLineVisible</a></b></span>(bool <i>visible</i> = true)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#lineVisibleChanged">lineVisibleChanged</a></b></span>(bool <i>visible</i>)</td></tr>
</table></div>
<!-- @@@lineVisible -->
<!-- $$$minorGridLineColor-prop$$$minorGridLineColor$$$setMinorGridLineColorconstQColor&$$$minorGridLineColorChangedconstQColor& -->
<h3 class="fn" id="minorGridLineColor-prop"><a name="minorGridLineColor-prop"></a><span class="name">minorGridLineColor</span> : <span class="type">QColor</span></h3>
<p>This property holds the color of the minor grid line.</p>
<p>Applies only to axes that support minor grid lines.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> QColor </td><td class="memItemRight bottomAlign"><span class="name"><b>minorGridLineColor</b></span>()</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b>setMinorGridLineColor</b></span>(const QColor &amp;<i>color</i>)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#minorGridLineColorChanged">minorGridLineColorChanged</a></b></span>(const QColor &amp;<i>color</i>)</td></tr>
</table></div>
<!-- @@@minorGridLineColor -->
<!-- $$$minorGridLinePen-prop$$$minorGridLinePen$$$setMinorGridLinePenconstQPen&$$$minorGridLinePenChangedconstQPen& -->
<h3 class="fn" id="minorGridLinePen-prop"><a name="minorGridLinePen-prop"></a><span class="name">minorGridLinePen</span> : <span class="type">QPen</span></h3>
<p>This property holds the pen used to draw the minor grid line.</p>
<p>Applies only to axes that support minor grid lines.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> QPen </td><td class="memItemRight bottomAlign"><span class="name"><b>minorGridLinePen</b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b>setMinorGridLinePen</b></span>(const QPen &amp;<i>pen</i>)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#minorGridLinePenChanged">minorGridLinePenChanged</a></b></span>(const QPen &amp;<i>pen</i>)</td></tr>
</table></div>
<!-- @@@minorGridLinePen -->
<!-- $$$minorGridVisible-prop$$$isMinorGridLineVisible$$$setMinorGridLineVisiblebool$$$minorGridVisibleChangedbool -->
<h3 class="fn" id="minorGridVisible-prop"><a name="minorGridVisible-prop"></a><span class="name">minorGridVisible</span> : <span class="type">bool</span></h3>
<p>This property holds the visibility of the minor grid lines.</p>
<p>Applies only to axes that support minor grid lines.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> bool </td><td class="memItemRight bottomAlign"><span class="name"><b>isMinorGridLineVisible</b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b>setMinorGridLineVisible</b></span>(bool <i>visible</i> = true)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#minorGridVisibleChanged">minorGridVisibleChanged</a></b></span>(bool <i>visible</i>)</td></tr>
</table></div>
<!-- @@@minorGridVisible -->
<!-- $$$orientation-prop$$$orientation -->
<h3 class="fn" id="orientation-prop"><a name="orientation-prop"></a><span class="name">orientation</span> : const <span class="type">Qt::Orientation</span></h3>
<p>This property holds the orientation of the axis.</p>
<p>Fixed to either Qt::Horizontal or Qt::Vertical when the axis is added to a chart.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> Qt::Orientation </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#orientation">orientation</a></b></span>() const</td></tr>
</table></div>
<!-- @@@orientation -->
<!-- $$$reverse-prop$$$isReverse$$$setReversebool$$$reverseChangedbool -->
<h3 class="fn" id="reverse-prop"><a name="reverse-prop"></a><span class="name">reverse</span> : <span class="type">bool</span></h3>
<p>This property holds whether a reverse axis is used.</p>
<p>By default, the value is <code>false</code>.</p>
<p>The reverse axis is supported with a line, spline, and scatter series, as well as an area series with a cartesian chart. All axes of the same orientation attached to the same series must be reversed if one is reversed or the behavior is undefined.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> bool </td><td class="memItemRight bottomAlign"><span class="name"><b>isReverse</b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b>setReverse</b></span>(bool <i>reverse</i> = true)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b>reverseChanged</b></span>(bool <i>reverse</i>)</td></tr>
</table></div>
<!-- @@@reverse -->
<!-- $$$shadesBorderColor-prop$$$shadesBorderColor$$$setShadesBorderColorQColor$$$shadesBorderColorChangedQColor -->
<h3 class="fn" id="shadesBorderColor-prop"><a name="shadesBorderColor-prop"></a><span class="name">shadesBorderColor</span> : <span class="type">QColor</span></h3>
<p>This property holds the border (pen) color of the axis shades.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> QColor </td><td class="memItemRight bottomAlign"><span class="name"><b>shadesBorderColor</b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b>setShadesBorderColor</b></span>(QColor <i>color</i>)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#shadesBorderColorChanged">shadesBorderColorChanged</a></b></span>(QColor <i>color</i>)</td></tr>
</table></div>
<!-- @@@shadesBorderColor -->
<!-- $$$shadesBrush-prop$$$shadesBrush$$$setShadesBrushconstQBrush&$$$shadesBrushChangedconstQBrush& -->
<h3 class="fn" id="shadesBrush-prop"><a name="shadesBrush-prop"></a><span class="name">shadesBrush</span> : <span class="type">QBrush</span></h3>
<p>This property holds the brush used to draw the axis shades (the area between the grid lines).</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> QBrush </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#shadesBrush">shadesBrush</a></b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#setShadesBrush">setShadesBrush</a></b></span>(const QBrush &amp;<i>brush</i>)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#shadesBrushChanged">shadesBrushChanged</a></b></span>(const QBrush &amp;<i>brush</i>)</td></tr>
</table></div>
<!-- @@@shadesBrush -->
<!-- $$$shadesColor-prop$$$shadesColor$$$setShadesColorQColor$$$shadesColorChangedQColor -->
<h3 class="fn" id="shadesColor-prop"><a name="shadesColor-prop"></a><span class="name">shadesColor</span> : <span class="type">QColor</span></h3>
<p>This property holds the fill (brush) color of the axis shades.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> QColor </td><td class="memItemRight bottomAlign"><span class="name"><b>shadesColor</b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b>setShadesColor</b></span>(QColor <i>color</i>)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#shadesColorChanged">shadesColorChanged</a></b></span>(QColor <i>color</i>)</td></tr>
</table></div>
<!-- @@@shadesColor -->
<!-- $$$shadesPen-prop$$$shadesPen$$$setShadesPenconstQPen&$$$shadesPenChangedconstQPen& -->
<h3 class="fn" id="shadesPen-prop"><a name="shadesPen-prop"></a><span class="name">shadesPen</span> : <span class="type">QPen</span></h3>
<p>This property holds the pen used to draw the axis shades (the area between the grid lines).</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> QPen </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#shadesPen">shadesPen</a></b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#setShadesPen">setShadesPen</a></b></span>(const QPen &amp;<i>pen</i>)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#shadesPenChanged">shadesPenChanged</a></b></span>(const QPen &amp;<i>pen</i>)</td></tr>
</table></div>
<!-- @@@shadesPen -->
<!-- $$$shadesVisible-prop$$$shadesVisible$$$setShadesVisiblebool$$$shadesVisibleChangedbool -->
<h3 class="fn" id="shadesVisible-prop"><a name="shadesVisible-prop"></a><span class="name">shadesVisible</span> : <span class="type">bool</span></h3>
<p>This property holds the visibility of the axis shades.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> bool </td><td class="memItemRight bottomAlign"><span class="name"><b>shadesVisible</b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b>setShadesVisible</b></span>(bool <i>visible</i> = true)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#shadesVisibleChanged">shadesVisibleChanged</a></b></span>(bool <i>visible</i>)</td></tr>
</table></div>
<!-- @@@shadesVisible -->
<!-- $$$titleBrush-prop$$$titleBrush$$$setTitleBrushconstQBrush&$$$titleBrushChangedconstQBrush& -->
<h3 class="fn" id="titleBrush-prop"><a name="titleBrush-prop"></a><span class="name">titleBrush</span> : <span class="type">QBrush</span></h3>
<p>This property holds the brush used to draw the title text.</p>
<p>Only the color of the brush is relevant.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> QBrush </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#titleBrush">titleBrush</a></b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#setTitleBrush">setTitleBrush</a></b></span>(const QBrush &amp;<i>brush</i>)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#titleBrushChanged">titleBrushChanged</a></b></span>(const QBrush &amp;<i>brush</i>)</td></tr>
</table></div>
<!-- @@@titleBrush -->
<!-- $$$titleFont-prop$$$titleFont$$$setTitleFontconstQFont&$$$titleFontChangedconstQFont& -->
<h3 class="fn" id="titleFont-prop"><a name="titleFont-prop"></a><span class="name">titleFont</span> : <span class="type">QFont</span></h3>
<p>This property holds the font of the title of the axis.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> QFont </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#titleFont">titleFont</a></b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#setTitleFont">setTitleFont</a></b></span>(const QFont &amp;<i>font</i>)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#titleFontChanged">titleFontChanged</a></b></span>(const QFont &amp;<i>font</i>)</td></tr>
</table></div>
<!-- @@@titleFont -->
<!-- $$$titleText-prop$$$titleText$$$setTitleTextconstQString&$$$titleTextChangedconstQString& -->
<h3 class="fn" id="titleText-prop"><a name="titleText-prop"></a><span class="name">titleText</span> : <span class="type">QString</span></h3>
<p>This property holds the title of the axis.</p>
<p>Empty by default. Axis titles support HTML formatting.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> QString </td><td class="memItemRight bottomAlign"><span class="name"><b>titleText</b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b>setTitleText</b></span>(const QString &amp;<i>title</i>)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#titleTextChanged">titleTextChanged</a></b></span>(const QString &amp;<i>text</i>)</td></tr>
</table></div>
<!-- @@@titleText -->
<!-- $$$titleVisible-prop$$$isTitleVisible$$$setTitleVisiblebool$$$titleVisibleChangedbool -->
<h3 class="fn" id="titleVisible-prop"><a name="titleVisible-prop"></a><span class="name">titleVisible</span> : <span class="type">bool</span></h3>
<p>This property holds the visibility of the axis title.</p>
<p>By default, the value is <code>true</code>.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> bool </td><td class="memItemRight bottomAlign"><span class="name"><b>isTitleVisible</b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b>setTitleVisible</b></span>(bool <i>visible</i> = true)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#titleVisibleChanged">titleVisibleChanged</a></b></span>(bool <i>visible</i>)</td></tr>
</table></div>
<!-- @@@titleVisible -->
<!-- $$$visible-prop$$$isVisible$$$setVisiblebool$$$visibleChangedbool -->
<h3 class="fn" id="visible-prop"><a name="visible-prop"></a><span class="name">visible</span> : <span class="type">bool</span></h3>
<p>This property holds the visibility of the axis.</p>
<p><b>Access functions:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> bool </td><td class="memItemRight bottomAlign"><span class="name"><b>isVisible</b></span>() const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#setVisible">setVisible</a></b></span>(bool <i>visible</i> = true)</td></tr>
</table></div>
<p><b>Notifier signal:</b></p>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b><a href="qabstractaxis.html#visibleChanged">visibleChanged</a></b></span>(bool <i>visible</i>)</td></tr>
</table></div>
<!-- @@@visible -->
</div>
<div class="func">
<h2>Member Function Documentation</h2>
<!-- $$$~QAbstractAxis[overload1]$$$~QAbstractAxis -->
<h3 class="fn" id="dtor.QAbstractAxis"><a name="dtor.QAbstractAxis"></a>QAbstractAxis::<span class="name">~QAbstractAxis</span>()</h3>
<p>Destructs the axis object. When the axis is added to a chart, the chart object takes ownership.</p>
<!-- @@@~QAbstractAxis -->
<!-- $$$colorChanged -->
<h3 class="fn" id="colorChanged"><a name="colorChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">colorChanged</span>(<span class="type">QColor</span> <i>color</i>)</h3>
<p>This signal is emitted when the color of the axis changes to <i>color</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#color-prop">color</a>. </p><!-- @@@colorChanged -->
<!-- $$$gridLineColorChanged -->
<h3 class="fn" id="gridLineColorChanged"><a name="gridLineColorChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">gridLineColorChanged</span>(const <span class="type">QColor</span> &amp;<i>color</i>)</h3>
<p>This signal is emitted when the color of the pen used to draw the grid line changes to <i>color</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#gridLineColor-prop">gridLineColor</a>. </p><!-- @@@gridLineColorChanged -->
<!-- $$$gridLinePen -->
<h3 class="fn" id="gridLinePen"><a name="gridLinePen"></a><span class="type">QPen</span> QAbstractAxis::<span class="name">gridLinePen</span>() const</h3>
<p>Returns the pen used to draw the grid.</p>
<p><b>Note:</b> Getter function for property <a href="qabstractaxis.html#gridLinePen-prop">gridLinePen</a>. </p><p><b>See also </b><a href="qabstractaxis.html#setGridLinePen">setGridLinePen</a>().</p>
<!-- @@@gridLinePen -->
<!-- $$$gridLinePenChanged -->
<h3 class="fn" id="gridLinePenChanged"><a name="gridLinePenChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">gridLinePenChanged</span>(const <span class="type">QPen</span> &amp;<i>pen</i>)</h3>
<p>This signal is emitted when the pen used to draw the grid line changes to <i>pen</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#gridLinePen-prop">gridLinePen</a>. </p><!-- @@@gridLinePenChanged -->
<!-- $$$gridVisibleChanged -->
<h3 class="fn" id="gridVisibleChanged"><a name="gridVisibleChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">gridVisibleChanged</span>(<span class="type">bool</span> <i>visible</i>)</h3>
<p>This signal is emitted when the visibility of the grid lines of the axis changes to <i>visible</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#gridVisible-prop">gridVisible</a>. </p><!-- @@@gridVisibleChanged -->
<!-- $$$hide[overload1]$$$hide -->
<h3 class="fn" id="hide"><a name="hide"></a><span class="type">void</span> QAbstractAxis::<span class="name">hide</span>()</h3>
<p>Makes the axis, shades, labels, and grid lines invisible.</p>
<!-- @@@hide -->
<!-- $$$labelsAngleChanged -->
<h3 class="fn" id="labelsAngleChanged"><a name="labelsAngleChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">labelsAngleChanged</span>(<span class="type">int</span> <i>angle</i>)</h3>
<p>This signal is emitted when the angle of the axis labels changes to <i>angle</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#labelsAngle-prop">labelsAngle</a>. </p><!-- @@@labelsAngleChanged -->
<!-- $$$labelsBrush -->
<h3 class="fn" id="labelsBrush"><a name="labelsBrush"></a><span class="type">QBrush</span> QAbstractAxis::<span class="name">labelsBrush</span>() const</h3>
<p>Returns the brush used to draw labels.</p>
<p><b>Note:</b> Getter function for property <a href="qabstractaxis.html#labelsBrush-prop">labelsBrush</a>. </p><p><b>See also </b><a href="qabstractaxis.html#setLabelsBrush">setLabelsBrush</a>().</p>
<!-- @@@labelsBrush -->
<!-- $$$labelsBrushChanged -->
<h3 class="fn" id="labelsBrushChanged"><a name="labelsBrushChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">labelsBrushChanged</span>(const <span class="type">QBrush</span> &amp;<i>brush</i>)</h3>
<p>This signal is emitted when the brush used to draw the axis labels changes to <i>brush</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#labelsBrush-prop">labelsBrush</a>. </p><!-- @@@labelsBrushChanged -->
<!-- $$$labelsColorChanged -->
<h3 class="fn" id="labelsColorChanged"><a name="labelsColorChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">labelsColorChanged</span>(<span class="type">QColor</span> <i>color</i>)</h3>
<p>This signal is emitted when the color of the axis labels changes to <i>color</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#labelsColor-prop">labelsColor</a>. </p><!-- @@@labelsColorChanged -->
<!-- $$$labelsFont -->
<h3 class="fn" id="labelsFont"><a name="labelsFont"></a><span class="type">QFont</span> QAbstractAxis::<span class="name">labelsFont</span>() const</h3>
<p>Returns the font used to draw labels.</p>
<p><b>Note:</b> Getter function for property <a href="qabstractaxis.html#labelsFont-prop">labelsFont</a>. </p><p><b>See also </b><a href="qabstractaxis.html#setLabelsFont">setLabelsFont</a>().</p>
<!-- @@@labelsFont -->
<!-- $$$labelsFontChanged -->
<h3 class="fn" id="labelsFontChanged"><a name="labelsFontChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">labelsFontChanged</span>(const <span class="type">QFont</span> &amp;<i>font</i>)</h3>
<p>This signal is emitted when the font of the axis labels changes to <i>font</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#labelsFont-prop">labelsFont</a>. </p><!-- @@@labelsFontChanged -->
<!-- $$$labelsVisibleChanged -->
<h3 class="fn" id="labelsVisibleChanged"><a name="labelsVisibleChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">labelsVisibleChanged</span>(<span class="type">bool</span> <i>visible</i>)</h3>
<p>This signal is emitted when the visibility of the labels of the axis changes to <i>visible</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#labelsVisible-prop">labelsVisible</a>. </p><!-- @@@labelsVisibleChanged -->
<!-- $$$linePen -->
<h3 class="fn" id="linePen"><a name="linePen"></a><span class="type">QPen</span> QAbstractAxis::<span class="name">linePen</span>() const</h3>
<p>Returns the pen used to draw the axis line and tick marks.</p>
<p><b>Note:</b> Getter function for property <a href="qabstractaxis.html#linePen-prop">linePen</a>. </p><p><b>See also </b><a href="qabstractaxis.html#setLinePen">setLinePen</a>().</p>
<!-- @@@linePen -->
<!-- $$$linePenChanged -->
<h3 class="fn" id="linePenChanged"><a name="linePenChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">linePenChanged</span>(const <span class="type">QPen</span> &amp;<i>pen</i>)</h3>
<p>This signal is emitted when the pen used to draw the line of the axis changes to <i>pen</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#linePen-prop">linePen</a>. </p><!-- @@@linePenChanged -->
<!-- $$$lineVisibleChanged -->
<h3 class="fn" id="lineVisibleChanged"><a name="lineVisibleChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">lineVisibleChanged</span>(<span class="type">bool</span> <i>visible</i>)</h3>
<p>This signal is emitted when the visibility of the axis line changes to <i>visible</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#lineVisible-prop">lineVisible</a>. </p><!-- @@@lineVisibleChanged -->
<!-- $$$minorGridLineColorChanged -->
<h3 class="fn" id="minorGridLineColorChanged"><a name="minorGridLineColorChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">minorGridLineColorChanged</span>(const <span class="type">QColor</span> &amp;<i>color</i>)</h3>
<p>This signal is emitted when the color of the pen used to draw the minor grid line changes to <i>color</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#minorGridLineColor-prop">minorGridLineColor</a>. </p><!-- @@@minorGridLineColorChanged -->
<!-- $$$minorGridLinePenChanged -->
<h3 class="fn" id="minorGridLinePenChanged"><a name="minorGridLinePenChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">minorGridLinePenChanged</span>(const <span class="type">QPen</span> &amp;<i>pen</i>)</h3>
<p>This signal is emitted when the pen used to draw the minor grid line changes to <i>pen</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#minorGridLinePen-prop">minorGridLinePen</a>. </p><!-- @@@minorGridLinePenChanged -->
<!-- $$$minorGridVisibleChanged -->
<h3 class="fn" id="minorGridVisibleChanged"><a name="minorGridVisibleChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">minorGridVisibleChanged</span>(<span class="type">bool</span> <i>visible</i>)</h3>
<p>This signal is emitted when the visibility of the minor grid lines of the axis changes to <i>visible</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#minorGridVisible-prop">minorGridVisible</a>. </p><!-- @@@minorGridVisibleChanged -->
<!-- $$$orientation -->
<h3 class="fn" id="orientation"><a name="orientation"></a><span class="type">Qt::Orientation</span> QAbstractAxis::<span class="name">orientation</span>() const</h3>
<p>Returns the orientation of the axis (vertical or horizontal).</p>
<p><b>Note:</b> Getter function for property <a href="qabstractaxis.html#orientation-prop">orientation</a>. </p><!-- @@@orientation -->
<!-- $$$setGridLinePen -->
<h3 class="fn" id="setGridLinePen"><a name="setGridLinePen"></a><span class="type">void</span> QAbstractAxis::<span class="name">setGridLinePen</span>(const <span class="type">QPen</span> &amp;<i>pen</i>)</h3>
<p>Sets the pen used to draw the grid lines to <i>pen</i>.</p>
<p><b>Note:</b> Setter function for property <a href="qabstractaxis.html#gridLinePen-prop">gridLinePen</a>. </p><p><b>See also </b><a href="qabstractaxis.html#gridLinePen">gridLinePen</a>().</p>
<!-- @@@setGridLinePen -->
<!-- $$$setLabelsBrush -->
<h3 class="fn" id="setLabelsBrush"><a name="setLabelsBrush"></a><span class="type">void</span> QAbstractAxis::<span class="name">setLabelsBrush</span>(const <span class="type">QBrush</span> &amp;<i>brush</i>)</h3>
<p>Sets the brush used to draw labels to <i>brush</i>.</p>
<p><b>Note:</b> Setter function for property <a href="qabstractaxis.html#labelsBrush-prop">labelsBrush</a>. </p><p><b>See also </b><a href="qabstractaxis.html#labelsBrush">labelsBrush</a>().</p>
<!-- @@@setLabelsBrush -->
<!-- $$$setLabelsFont -->
<h3 class="fn" id="setLabelsFont"><a name="setLabelsFont"></a><span class="type">void</span> QAbstractAxis::<span class="name">setLabelsFont</span>(const <span class="type">QFont</span> &amp;<i>font</i>)</h3>
<p>Sets the font used to draw labels to <i>font</i>.</p>
<p><b>Note:</b> Setter function for property <a href="qabstractaxis.html#labelsFont-prop">labelsFont</a>. </p><p><b>See also </b><a href="qabstractaxis.html#labelsFont">labelsFont</a>().</p>
<!-- @@@setLabelsFont -->
<!-- $$$setLinePen -->
<h3 class="fn" id="setLinePen"><a name="setLinePen"></a><span class="type">void</span> QAbstractAxis::<span class="name">setLinePen</span>(const <span class="type">QPen</span> &amp;<i>pen</i>)</h3>
<p>Sets the pen used to draw the axis line and tick marks to <i>pen</i>.</p>
<p><b>Note:</b> Setter function for property <a href="qabstractaxis.html#linePen-prop">linePen</a>. </p><p><b>See also </b><a href="qabstractaxis.html#linePen">linePen</a>().</p>
<!-- @@@setLinePen -->
<!-- $$$setLineVisible -->
<h3 class="fn" id="setLineVisible"><a name="setLineVisible"></a><span class="type">void</span> QAbstractAxis::<span class="name">setLineVisible</span>(<span class="type">bool</span> <i>visible</i> = true)</h3>
<p>Determines whether the axis line and tick marks are <i>visible</i>.</p>
<p><b>Note:</b> Setter function for property <a href="qabstractaxis.html#lineVisible-prop">lineVisible</a>. </p><p><b>See also </b><a href="qabstractaxis.html#lineVisible-prop">isLineVisible</a>().</p>
<!-- @@@setLineVisible -->
<!-- $$$setMax[overload1]$$$setMaxconstQVariant& -->
<h3 class="fn" id="setMax"><a name="setMax"></a><span class="type">void</span> QAbstractAxis::<span class="name">setMax</span>(const <span class="type">QVariant</span> &amp;<i>max</i>)</h3>
<p>Sets the maximum value shown on the axis. Depending on the actual axis type, the <i>max</i> parameter is converted to the appropriate type of value. If the conversion is impossible, the function call does nothing.</p>
<!-- @@@setMax -->
<!-- $$$setMin[overload1]$$$setMinconstQVariant& -->
<h3 class="fn" id="setMin"><a name="setMin"></a><span class="type">void</span> QAbstractAxis::<span class="name">setMin</span>(const <span class="type">QVariant</span> &amp;<i>min</i>)</h3>
<p>Sets the minimum value shown on the axis. Depending on the actual axis type, the <i>min</i> parameter is converted to the appropriate type of value. If the conversion is impossible, the function call does nothing.</p>
<!-- @@@setMin -->
<!-- $$$setRange[overload1]$$$setRangeconstQVariant&constQVariant& -->
<h3 class="fn" id="setRange"><a name="setRange"></a><span class="type">void</span> QAbstractAxis::<span class="name">setRange</span>(const <span class="type">QVariant</span> &amp;<i>min</i>, const <span class="type">QVariant</span> &amp;<i>max</i>)</h3>
<p>Sets the range shown on the axis. Depending on the actual axis type, the <i>min</i> and <i>max</i> parameters are converted to appropriate types of values. If the conversion is impossible, the function call does nothing.</p>
<!-- @@@setRange -->
<!-- $$$setShadesBrush -->
<h3 class="fn" id="setShadesBrush"><a name="setShadesBrush"></a><span class="type">void</span> QAbstractAxis::<span class="name">setShadesBrush</span>(const <span class="type">QBrush</span> &amp;<i>brush</i>)</h3>
<p>Sets the brush used to draw shades to <i>brush</i>.</p>
<p><b>Note:</b> Setter function for property <a href="qabstractaxis.html#shadesBrush-prop">shadesBrush</a>. </p><p><b>See also </b><a href="qabstractaxis.html#shadesBrush">shadesBrush</a>().</p>
<!-- @@@setShadesBrush -->
<!-- $$$setShadesPen -->
<h3 class="fn" id="setShadesPen"><a name="setShadesPen"></a><span class="type">void</span> QAbstractAxis::<span class="name">setShadesPen</span>(const <span class="type">QPen</span> &amp;<i>pen</i>)</h3>
<p>Sets the pen used to draw shades to <i>pen</i>.</p>
<p><b>Note:</b> Setter function for property <a href="qabstractaxis.html#shadesPen-prop">shadesPen</a>. </p><p><b>See also </b><a href="qabstractaxis.html#shadesPen">shadesPen</a>().</p>
<!-- @@@setShadesPen -->
<!-- $$$setTitleBrush -->
<h3 class="fn" id="setTitleBrush"><a name="setTitleBrush"></a><span class="type">void</span> QAbstractAxis::<span class="name">setTitleBrush</span>(const <span class="type">QBrush</span> &amp;<i>brush</i>)</h3>
<p>Sets the brush used to draw titles to <i>brush</i>.</p>
<p><b>Note:</b> Setter function for property <a href="qabstractaxis.html#titleBrush-prop">titleBrush</a>. </p><p><b>See also </b><a href="qabstractaxis.html#titleBrush">titleBrush</a>().</p>
<!-- @@@setTitleBrush -->
<!-- $$$setTitleFont -->
<h3 class="fn" id="setTitleFont"><a name="setTitleFont"></a><span class="type">void</span> QAbstractAxis::<span class="name">setTitleFont</span>(const <span class="type">QFont</span> &amp;<i>font</i>)</h3>
<p>Sets the font used to draw titles to <i>font</i>.</p>
<p><b>Note:</b> Setter function for property <a href="qabstractaxis.html#titleFont-prop">titleFont</a>. </p><p><b>See also </b><a href="qabstractaxis.html#titleFont">titleFont</a>().</p>
<!-- @@@setTitleFont -->
<!-- $$$setVisible -->
<h3 class="fn" id="setVisible"><a name="setVisible"></a><span class="type">void</span> QAbstractAxis::<span class="name">setVisible</span>(<span class="type">bool</span> <i>visible</i> = true)</h3>
<p>Sets the visibility of the axis, shades, labels, and grid lines to <i>visible</i>.</p>
<p><b>Note:</b> Setter function for property <a href="qabstractaxis.html#visible-prop">visible</a>. </p><p><b>See also </b><a href="qabstractaxis.html#visible-prop">isVisible</a>().</p>
<!-- @@@setVisible -->
<!-- $$$shadesBorderColorChanged -->
<h3 class="fn" id="shadesBorderColorChanged"><a name="shadesBorderColorChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">shadesBorderColorChanged</span>(<span class="type">QColor</span> <i>color</i>)</h3>
<p>This signal is emitted when the border color of the axis shades changes to <i>color</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#shadesBorderColor-prop">shadesBorderColor</a>. </p><!-- @@@shadesBorderColorChanged -->
<!-- $$$shadesBrush -->
<h3 class="fn" id="shadesBrush"><a name="shadesBrush"></a><span class="type">QBrush</span> QAbstractAxis::<span class="name">shadesBrush</span>() const</h3>
<p>Returns the brush used to draw shades.</p>
<p><b>Note:</b> Getter function for property <a href="qabstractaxis.html#shadesBrush-prop">shadesBrush</a>. </p><p><b>See also </b><a href="qabstractaxis.html#setShadesBrush">setShadesBrush</a>().</p>
<!-- @@@shadesBrush -->
<!-- $$$shadesBrushChanged -->
<h3 class="fn" id="shadesBrushChanged"><a name="shadesBrushChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">shadesBrushChanged</span>(const <span class="type">QBrush</span> &amp;<i>brush</i>)</h3>
<p>This signal is emitted when the brush used to draw the axis shades changes to <i>brush</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#shadesBrush-prop">shadesBrush</a>. </p><!-- @@@shadesBrushChanged -->
<!-- $$$shadesColorChanged -->
<h3 class="fn" id="shadesColorChanged"><a name="shadesColorChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">shadesColorChanged</span>(<span class="type">QColor</span> <i>color</i>)</h3>
<p>This signal is emitted when the color of the axis shades changes to <i>color</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#shadesColor-prop">shadesColor</a>. </p><!-- @@@shadesColorChanged -->
<!-- $$$shadesPen -->
<h3 class="fn" id="shadesPen"><a name="shadesPen"></a><span class="type">QPen</span> QAbstractAxis::<span class="name">shadesPen</span>() const</h3>
<p>Returns the pen used to draw shades.</p>
<p><b>Note:</b> Getter function for property <a href="qabstractaxis.html#shadesPen-prop">shadesPen</a>. </p><p><b>See also </b><a href="qabstractaxis.html#setShadesPen">setShadesPen</a>().</p>
<!-- @@@shadesPen -->
<!-- $$$shadesPenChanged -->
<h3 class="fn" id="shadesPenChanged"><a name="shadesPenChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">shadesPenChanged</span>(const <span class="type">QPen</span> &amp;<i>pen</i>)</h3>
<p>This signal is emitted when the pen used to draw the axis shades changes to <i>pen</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#shadesPen-prop">shadesPen</a>. </p><!-- @@@shadesPenChanged -->
<!-- $$$shadesVisibleChanged -->
<h3 class="fn" id="shadesVisibleChanged"><a name="shadesVisibleChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">shadesVisibleChanged</span>(<span class="type">bool</span> <i>visible</i>)</h3>
<p>This signal is emitted when the visibility of the axis shades changes to <i>visible</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#shadesVisible-prop">shadesVisible</a>. </p><!-- @@@shadesVisibleChanged -->
<!-- $$$show[overload1]$$$show -->
<h3 class="fn" id="show"><a name="show"></a><span class="type">void</span> QAbstractAxis::<span class="name">show</span>()</h3>
<p>Makes the axis, shades, labels, and grid lines visible.</p>
<!-- @@@show -->
<!-- $$$titleBrush -->
<h3 class="fn" id="titleBrush"><a name="titleBrush"></a><span class="type">QBrush</span> QAbstractAxis::<span class="name">titleBrush</span>() const</h3>
<p>Returns the brush used to draw titles.</p>
<p><b>Note:</b> Getter function for property <a href="qabstractaxis.html#titleBrush-prop">titleBrush</a>. </p><p><b>See also </b><a href="qabstractaxis.html#setTitleBrush">setTitleBrush</a>().</p>
<!-- @@@titleBrush -->
<!-- $$$titleBrushChanged -->
<h3 class="fn" id="titleBrushChanged"><a name="titleBrushChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">titleBrushChanged</span>(const <span class="type">QBrush</span> &amp;<i>brush</i>)</h3>
<p>This signal is emitted when the brush used to draw the axis title changes to <i>brush</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#titleBrush-prop">titleBrush</a>. </p><!-- @@@titleBrushChanged -->
<!-- $$$titleFont -->
<h3 class="fn" id="titleFont"><a name="titleFont"></a><span class="type">QFont</span> QAbstractAxis::<span class="name">titleFont</span>() const</h3>
<p>Returns the font used to draw titles.</p>
<p><b>Note:</b> Getter function for property <a href="qabstractaxis.html#titleFont-prop">titleFont</a>. </p><p><b>See also </b><a href="qabstractaxis.html#setTitleFont">setTitleFont</a>().</p>
<!-- @@@titleFont -->
<!-- $$$titleFontChanged -->
<h3 class="fn" id="titleFontChanged"><a name="titleFontChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">titleFontChanged</span>(const <span class="type">QFont</span> &amp;<i>font</i>)</h3>
<p>This signal is emitted when the font of the axis title changes to <i>font</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#titleFont-prop">titleFont</a>. </p><!-- @@@titleFontChanged -->
<!-- $$$titleTextChanged -->
<h3 class="fn" id="titleTextChanged"><a name="titleTextChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">titleTextChanged</span>(const <span class="type">QString</span> &amp;<i>text</i>)</h3>
<p>This signal is emitted when the text of the axis title changes to <i>text</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#titleText-prop">titleText</a>. </p><!-- @@@titleTextChanged -->
<!-- $$$titleVisibleChanged -->
<h3 class="fn" id="titleVisibleChanged"><a name="titleVisibleChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">titleVisibleChanged</span>(<span class="type">bool</span> <i>visible</i>)</h3>
<p>This signal is emitted when the visibility of the title text of the axis changes to <i>visible</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#titleVisible-prop">titleVisible</a>. </p><!-- @@@titleVisibleChanged -->
<!-- $$$type[overload1]$$$type -->
<h3 class="fn" id="type"><a name="type"></a><code>[pure virtual] </code><span class="type"><a href="qabstractaxis.html#AxisType-enum">AxisType</a></span> QAbstractAxis::<span class="name">type</span>() const</h3>
<p>Returns the type of the axis.</p>
<!-- @@@type -->
<!-- $$$visibleChanged -->
<h3 class="fn" id="visibleChanged"><a name="visibleChanged"></a><code>[signal] </code><span class="type">void</span> QAbstractAxis::<span class="name">visibleChanged</span>(<span class="type">bool</span> <i>visible</i>)</h3>
<p>This signal is emitted when the visibility of the axis changes to <i>visible</i>.</p>
<p><b>Note:</b> Notifier signal for property <a href="qabstractaxis.html#visible-prop">visible</a>. </p><!-- @@@visibleChanged -->
</div>
        </div>
       </div>
   </div>
   </div>
</div>
<div class="footer">
   <p>
   <acronym title="Copyright">&copy;</acronym> 2017 The Qt Company Ltd.
   Documentation contributions included herein are the copyrights of
   their respective owners.<br>    The documentation provided herein is licensed under the terms of the    <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation    License version 1.3</a> as published by the Free Software Foundation.<br>    Qt and respective logos are trademarks of The Qt Company Ltd.     in Finland and/or other countries worldwide. All other trademarks are property
   of their respective owners. </p>
</div>
</body>
</html>