diff --git a/src/BaseDataset.php b/src/BaseDataset.php index 70307c7..3179e88 100644 --- a/src/BaseDataset.php +++ b/src/BaseDataset.php @@ -134,6 +134,11 @@ abstract class BaseDataset extends \yii\base\Component */ public $stack = null; + /** + * @var int + */ + public $lineTension = 0; + /** * Populates `$this->data` manipulating a query row into the correct format * for the dataset format use are using @@ -219,6 +224,8 @@ public function getDataset() $dataset['stack'] = $this->stack; } + $dataset['lineTension'] = $this->lineTension; + return $dataset; }