值未显示在GoogleChart的折线图的hAxis中

时间:2019-02-28 07:17:46

标签: php yii2 linechart

值显示在折线图的vAxis中,而不显示在hAxis中。实际上,年份2004、2005 ..应该显示在水平轴上。

我需要传递任何属性吗?

PHP

<?php
use \scotthuangzl\googlechart\GoogleChart;

echo GoogleChart::widget(array('visualization' => 'LineChart',
'data' => $data,
'options' => array(
    'title' => 'Line Chart',
    'titleTextStyle' => array('color' => '#FF0000'),
    'vAxis' => array(
        'title' => 'Number of cases',
        'viewWindow' => array (
            'min' => 0
        ),
        'gridlines' => array(

        )
    ),
    'hAxis' => array(
        'title' => 'Year',
        'slantedText' => true,
    ),
    'curveType' => 'function', //smooth curve or not
    'legend' => array('position' => 'bottom'),
)));

图片

enter image description here

$data = array(
    array('Year', 'Sales', 'Expenses'),
    array('2004', 1000, 400),
    array('2005', 1170, 460),
    array('2006', 660, 1120),
    array('2007', 1030, 540),
);

任何提示/建议都值得赞赏。

0 个答案:

没有答案