![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/job-board.corals.io/resources/views/vendor/charts/highcharts/ |
<script type="text/javascript"> var {{ $model->id }}; $(function () { {{ $model->id }} = new Highcharts.Chart({ chart: { renderTo: "{{ $model->id }}", @include('charts::_partials.dimension.js2') }, @if($model->title) title: { text: "{!! $model->title !!}", x: -20 //center }, @endif @if(!$model->credits) credits: { enabled: false }, @endif xAxis: { title: { text: "{{ $model->x_axis_title }}" }, categories: [ @foreach($model->labels as $label) "{!! $label !!}", @endforeach ], }, yAxis: { title: { text: "{!! $model->y_axis_title === null ? $model->element_label : $model->y_axis_title !!}" }, plotLines: [{ value: 0, height: 0.5, width: 1, color: '#808080' }] }, @if($model->colors) plotOptions: { series: { color: "{{ $model->colors[0] }}" }, }, @endif legend: { @if(!$model->legend) enabled: false, @endif }, series: [{ name: "{!! $model->element_label !!}", data: [ @foreach($model->values as $dta) {{ $dta }}, @endforeach ] }] }); }); </script> @if(!$model->customId) @include('charts::_partials.container.div') @endif