-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
Copy pathChart.php
646 lines (569 loc) · 12.4 KB
/
Chart.php
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
<?php
/**
* This file is part of PHPWord - A pure PHP library for reading and writing
* word processing documents.
*
* PHPWord is free software distributed under the terms of the GNU Lesser
* General Public License version 3 as published by the Free Software Foundation.
*
* For the full copyright and license information, please read the LICENSE
* file that was distributed with this source code. For the full list of
* contributors, visit https://github.com/PHPOffice/PHPWord/contributors.
*
* @see https://github.com/PHPOffice/PHPWord
*
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
*/
namespace PhpOffice\PhpWord\Style;
/**
* Chart style.
*
* @since 0.12.0
*/
class Chart extends AbstractStyle
{
/**
* Width (in EMU).
*
* @var int
*/
private $width = 1000000;
/**
* Height (in EMU).
*
* @var int
*/
private $height = 1000000;
/**
* Is 3D; applies to pie, bar, line, area.
*
* @var bool
*/
private $is3d = false;
/**
* A list of colors to use in the chart.
*
* @var array
*/
private $colors = [];
/**
* Chart title.
*
* @var string
*/
private $title;
/**
* Chart legend visibility.
*
* @var bool
*/
private $showLegend = false;
/**
* Chart legend Position.
* Possible values are 'r', 't', 'b', 'l', 'tr'.
*
* @var string
*/
private $legendPosition = 'r';
/**
* A list of display options for data labels.
*
* @var array
*/
private $dataLabelOptions = [
'showVal' => true, // value
'showCatName' => true, // category name
'showLegendKey' => false, //show the cart legend
'showSerName' => false, // series name
'showPercent' => false,
'showLeaderLines' => false,
'showBubbleSize' => false,
];
/**
* A string that tells the writer where to write chart labels or to skip
* "nextTo" - sets labels next to the axis (bar graphs on the left) (default)
* "low" - labels on the left side of the graph
* "high" - labels on the right side of the graph.
*
* @var string
*/
private $categoryLabelPosition = 'nextTo';
/**
* A string that tells the writer where to write chart labels or to skip
* "nextTo" - sets labels next to the axis (bar graphs on the bottom) (default)
* "low" - labels are below the graph
* "high" - labels above the graph.
*
* @var string
*/
private $valueLabelPosition = 'nextTo';
/**
* @var string
*/
private $categoryAxisTitle;
/**
* @var string
*/
private $valueAxisTitle;
/**
* The position for major tick marks
* Possible values are 'in', 'out', 'cross', 'none'.
*
* @var string
*/
private $majorTickMarkPos = 'none';
/**
* Show labels for axis.
*
* @var bool
*/
private $showAxisLabels = false;
/**
* Show Gridlines for Y-Axis.
*
* @var bool
*/
private $gridY = false;
/**
* Show Gridlines for X-Axis.
*
* @var bool
*/
private $gridX = false;
/**
* Min value for Y-Axis.
*
* @var null|float|int
*/
private $minY;
/**
* Max value for X-Axis.
*
* @var null|float|int
*/
private $minX;
/**
* Max value for Y-Axis.
*
* @var null|float|int
*/
private $maxY;
/**
* Max value for X-Axis.
*
* @var null|float|int
*/
private $maxX;
/**
* Create a new instance.
*
* @param array $style
*/
public function __construct($style = [])
{
$this->setStyleByArray($style);
}
/**
* Get width.
*
* @return int
*/
public function getWidth()
{
return $this->width;
}
/**
* Set width.
*
* @param int $value
*
* @return self
*/
public function setWidth($value = null)
{
$this->width = $this->setIntVal($value, $this->width);
return $this;
}
/**
* Get height.
*
* @return int
*/
public function getHeight()
{
return $this->height;
}
/**
* Set height.
*
* @param int $value
*
* @return self
*/
public function setHeight($value = null)
{
$this->height = $this->setIntVal($value, $this->height);
return $this;
}
/**
* Is 3D.
*
* @return bool
*/
public function is3d()
{
return $this->is3d;
}
/**
* Set 3D.
*
* @param bool $value
*
* @return self
*/
public function set3d($value = true)
{
$this->is3d = $this->setBoolVal($value, $this->is3d);
return $this;
}
/**
* Get the list of colors to use in a chart.
*
* @return array
*/
public function getColors()
{
return $this->colors;
}
/**
* Set the colors to use in a chart.
*
* @param array $value a list of colors to use in the chart
*
* @return self
*/
public function setColors($value = [])
{
$this->colors = $value;
return $this;
}
/**
* Get the chart title.
*
* @return string
*/
public function getTitle()
{
return $this->title;
}
/**
* Set the chart title.
*
* @param string $value
*
* @return self
*/
public function setTitle($value = null)
{
$this->title = $value;
return $this;
}
/**
* Get chart legend visibility.
*
* @return bool
*/
public function isShowLegend()
{
return $this->showLegend;
}
/**
* Set chart legend visibility.
*
* @param bool $value
*
* @return self
*/
public function setShowLegend($value = false)
{
$this->showLegend = $value;
return $this;
}
/**
* Get chart legend position.
*
* @return string
*/
public function getLegendPosition()
{
return $this->legendPosition;
}
/**
* Set chart legend position. choices:
* "r" - right of chart
* "b" - bottom of chart
* "t" - top of chart
* "l" - left of chart
* "tr" - top right of chart.
*
* default: right
*
* @param string $legendPosition
*
* @return self
*/
public function setLegendPosition($legendPosition = 'r')
{
$enum = ['r', 'b', 't', 'l', 'tr'];
$this->legendPosition = $this->setEnumVal($legendPosition, $enum, $this->legendPosition);
return $this;
}
/*
* Show labels for axis
*
* @return bool
*/
public function showAxisLabels()
{
return $this->showAxisLabels;
}
/**
* Set show Gridlines for Y-Axis.
*
* @param bool $value
*
* @return self
*/
public function setShowAxisLabels($value = true)
{
$this->showAxisLabels = $this->setBoolVal($value, $this->showAxisLabels);
return $this;
}
/**
* get the list of options for data labels.
*
* @return array
*/
public function getDataLabelOptions()
{
return $this->dataLabelOptions;
}
/**
* Set values for data label options.
* This will only change values for options defined in $this->dataLabelOptions, and cannot create new ones.
*
* @param array $values [description]
*/
public function setDataLabelOptions($values = []): void
{
foreach (array_keys($this->dataLabelOptions) as $option) {
if (isset($values[$option])) {
$this->dataLabelOptions[$option] = $this->setBoolVal(
$values[$option],
$this->dataLabelOptions[$option]
);
}
}
}
/*
* Show Gridlines for Y-Axis
*
* @return bool
*/
public function showGridY()
{
return $this->gridY;
}
/**
* Set show Gridlines for Y-Axis.
*
* @param bool $value
*
* @return self
*/
public function setShowGridY($value = true)
{
$this->gridY = $this->setBoolVal($value, $this->gridY);
return $this;
}
/**
* Get the categoryLabelPosition setting.
*
* @return string
*/
public function getCategoryLabelPosition()
{
return $this->categoryLabelPosition;
}
/**
* Set the categoryLabelPosition setting
* "none" - skips writing labels
* "nextTo" - sets labels next to the (bar graphs on the left)
* "low" - labels on the left side of the graph
* "high" - labels on the right side of the graph.
*
* @param mixed $labelPosition
*
* @return self
*/
public function setCategoryLabelPosition($labelPosition)
{
$enum = ['nextTo', 'low', 'high'];
$this->categoryLabelPosition = $this->setEnumVal($labelPosition, $enum, $this->categoryLabelPosition);
return $this;
}
/**
* Get the valueAxisLabelPosition setting.
*
* @return string
*/
public function getValueLabelPosition()
{
return $this->valueLabelPosition;
}
/**
* Set the valueLabelPosition setting
* "none" - skips writing labels
* "nextTo" - sets labels next to the value
* "low" - sets labels are below the graph
* "high" - sets labels above the graph.
*
* @param string
* @param mixed $labelPosition
*/
public function setValueLabelPosition($labelPosition)
{
$enum = ['nextTo', 'low', 'high'];
$this->valueLabelPosition = $this->setEnumVal($labelPosition, $enum, $this->valueLabelPosition);
return $this;
}
/**
* Get the categoryAxisTitle.
*
* @return string
*/
public function getCategoryAxisTitle()
{
return $this->categoryAxisTitle;
}
/**
* Set the title that appears on the category side of the chart.
*
* @param string $axisTitle
*/
public function setCategoryAxisTitle($axisTitle)
{
$this->categoryAxisTitle = $axisTitle;
return $this;
}
/**
* Get the valueAxisTitle.
*
* @return string
*/
public function getValueAxisTitle()
{
return $this->valueAxisTitle;
}
/**
* Set the title that appears on the value side of the chart.
*
* @param string $axisTitle
*/
public function setValueAxisTitle($axisTitle)
{
$this->valueAxisTitle = $axisTitle;
return $this;
}
public function getMajorTickPosition()
{
return $this->majorTickMarkPos;
}
/**
* Set the position for major tick marks.
*
* @param string $position
*/
public function setMajorTickPosition($position): void
{
$enum = ['in', 'out', 'cross', 'none'];
$this->majorTickMarkPos = $this->setEnumVal($position, $enum, $this->majorTickMarkPos);
}
/**
* Show Gridlines for X-Axis.
*
* @return bool
*/
public function showGridX()
{
return $this->gridX;
}
/**
* Set show Gridlines for X-Axis.
*
* @param bool $value
*
* @return self
*/
public function setShowGridX($value = true)
{
$this->gridX = $this->setBoolVal($value, $this->gridX);
return $this;
}
/**
* @return null|float|int
*/
public function minY()
{
return $this->minY;
}
/**
* @param null|float|int $minY
*/
public function setMinY($minY): void
{
$this->minY = $minY;
}
/**
* @return null|float|int
*/
public function minX()
{
return $this->minX;
}
/**
* @param null|float|int $minX
*/
public function setMinX($minX): void
{
$this->minX = $minX;
}
/**
* @return null|float|int
*/
public function maxY()
{
return $this->maxY;
}
/**
* @param null|float|int $maxY
*/
public function setMaxY($maxY): void
{
$this->maxY = $maxY;
}
/**
* @return null|float|int
*/
public function maxX()
{
return $this->maxX;
}
/**
* @param null|float|int $maxX
*/
public function setMaxX($maxX): void
{
$this->maxX = $maxX;
}
}