![]() 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/dceprojects.corals.io/resources/views/vendor/charts/highcharts/multi/ |
<script type="text/javascript"> var {{ $model->id }}; $(function () { {{ $model->id }} = new Highcharts.Chart({ chart: { renderTo: "{{ $model->id }}", @include('charts::_partials.dimension.js2') plotBackgroundColor: null, plotBorderWidth: null, plotShadow: false, type: 'column' }, @if($model->title) title: { text: "{!! $model->title !!}" }, @endif @if(!$model->credits) credits: { enabled: false }, @endif plotOptions: { column: { pointPadding: 0.2, borderWidth: 0 } }, xAxis: { categories: [ @foreach($model->labels as $label) "{!! $label !!}", @endforeach ], }, yAxis: { title: { text: "{!! $model->y_axis_title === null ? $model->element_label : $model->y_axis_title !!}" }, }, legend: { @if(!$model->legend) enabled: false, @endif }, series: [ @for ($i = 0; $i < count($model->datasets); $i++) { name: "{!! $model->datasets[$i]['label'] !!}", @if($model->colors && count($model->colors) > $i) color: "{{ $model->colors[$i] }}", @endif data: [ @foreach($model->datasets[$i]['values'] as $dta) {{ $dta }}, @endforeach ] }, @endfor ] }) }); </script> @if(!$model->customId) @include('charts::_partials.container.div') @endif