1 | <?php |
||
8 | trait PointShapeTrait |
||
9 | { |
||
10 | /** |
||
11 | * The shape of individual data elements: 'circle', 'triangle', 'square', 'diamond', 'star', or 'polygon'. |
||
12 | * |
||
13 | * Default: 'circle' |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $pointShape; |
||
18 | |||
19 | /** |
||
20 | * @param string $pointShape |
||
21 | * |
||
22 | * @return $this |
||
23 | */ |
||
24 | 1 | public function setPointShape($pointShape) |
|
30 | } |
||
31 |