OEModule\OphCiExamination\components\VisualOutcomeReport::seriesJson PHP Method

seriesJson() public method

public seriesJson ( ) : string
return string
    public function seriesJson()
    {
        $this->series = array(array('data' => $this->dataSet(), 'name' => 'Visual Outcome', 'dataLabels' => array('enabled' => true, 'y' => -10, 'style' => array('fontSize' => '13px', 'fontFamily' => 'Verdana, sans-serif'))), array('type' => 'line', 'data' => array(array(-1, -1), array(6, 6)), 'dashStyle' => 'longdash', 'marker' => array('enabled' => false), 'enableMouseTracking' => false));
        return json_encode($this->series);
    }