【发布时间】:2015-10-19 13:36:44
【问题描述】:
我想在 Highcharts Yii2 中的饼图图例中添加图像。请参阅example,但我无法将其写入我的 PHP 小部件中的 labelFormat 部分。
<? = \dosamigos\highcharts\HighCharts::widget([
'clientOptions' => [
'chart' => [
'type' => 'pie'
],
'legend' => [
'useHTML' => TRUE,
'labelFormatter' => "function () {
return '<img src='http://highcharts.com/demo/gfx/sun.png'/>' + this.name;
}",
'itemMarginBottom' => 5
],
...
?>
【问题讨论】:
-
查看你的 js 控制台,如果有任何错误
-
控制台没有错误。
标签: javascript php highcharts yii2