| 1 | <?php |
||
| 8 | trait PointSizeTrait |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Diameter of displayed points in pixels. Use zero to hide all points. You can override values for individual |
||
| 12 | * series using the series property. If you're using a trendline, the pointSize option will affect the width of |
||
| 13 | * the trendline unless you override it with the trendlines.n.pointsize option. |
||
| 14 | * |
||
| 15 | * Default: 0 |
||
| 16 | * |
||
| 17 | * @var int |
||
| 18 | */ |
||
| 19 | protected $pointSize; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param int $pointSize |
||
| 23 | * |
||
| 24 | * @return $this |
||
| 25 | */ |
||
| 26 | public function setPointSize($pointSize) |
||
| 32 | } |
||
| 33 |