0

我在 Yii2 中使用散点图,使用以下扩展名 https://github.com/miloschuman/yii2-highcharts

为了响应,我已经传递了这样的参数。

<?php 
use miloschuman\highcharts\Highcharts; 
echo Highcharts::widget([               
    'options' => [
          'responsive' => [
            'rules'=> [
                [
                    'condition'=>
                    [
                        'maxWidth' => 500,
                    ],
                    'chartOptions'=> [
                        'legend' => [
                            'enabled'=> true,
                            'align'=> 'center',
                            'verticalAlign'=> 'bottom',
                            'layout'=> 'horizontal',
                        ],
                    ],
                ]
            ],                                
        ], 

    ]); 
?>

但它不适用于手机和平板电脑。有人知道吗?谢谢!

4

0 回答 0