PHP 클래스 miloschuman\highcharts\Highcharts

To use this widget, you can insert the following code in a view: php echo \miloschuman\highcharts\Highcharts::widget([ 'options' => [ 'title' => ['text' => 'Fruit Consumption'], 'xAxis' => [ 'categories' => ['Apples', 'Bananas', 'Oranges'] ], 'yAxis' => [ 'title' => ['text' => 'Fruit eaten'] ], 'series' => [ ['name' => 'Jane', 'data' => [1, 0, 4]], ['name' => 'John', 'data' => [5, 7, 3]] ] ] ]); By configuring the {@link $options} property, you may specify the options that need to be passed to the Highcharts JavaScript object. Please refer to the demo gallery and documentation on the {@link https://www.highcharts.com/ Highcharts website} for possible options. Note: You do not need to specify the chart->renderTo option as is shown in many of the examples on the Highcharts website. This value is automatically populated with the id of the widget's container element. If you wish to use a different container, feel free to specify a custom value.
상속: extends yii\base\Widget
파일 보기 프로젝트 열기: miloschuman/yii2-highcharts-widget 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
$callback
$htmlOptions
$options
$scripts
$setupOptions

보호된 프로퍼티들

프로퍼티 타입 설명
$baseScript
$constr

공개 메소드들

메소드 설명
run ( ) Renders the widget.

보호된 메소드들

메소드 설명
registerAssets ( ) Registers required assets and the executing code block with the view

메소드 상세

registerAssets() 보호된 메소드

Registers required assets and the executing code block with the view
protected registerAssets ( )

run() 공개 메소드

Renders the widget.
public run ( )

프로퍼티 상세

$baseScript 보호되어 있는 프로퍼티

protected $baseScript

$callback 공개적으로 프로퍼티

public $callback

$constr 보호되어 있는 프로퍼티

protected $constr

$htmlOptions 공개적으로 프로퍼티

public $htmlOptions

$options 공개적으로 프로퍼티

public $options

$scripts 공개적으로 프로퍼티

public $scripts

$setupOptions 공개적으로 프로퍼티

public $setupOptions