![]() 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({ colors: [ @foreach($model->colors as $c) "{{ $c }}", @endforeach ], chart: { renderTo: "{{ $model->id }}", @include('charts::_partials.dimension.js2') plotBackgroundColor: null, plotBorderWidth: null, plotShadow: false, type: 'pie' }, @if($model->title) title: { text: "{!! $model->title !!}" }, @endif @if(!$model->credits) credits: { enabled: false }, @endif tooltip: { pointFormat: '{point.y} <b>({point.percentage:.1f}%)</strong>' }, plotOptions: { pie: { innerSize: '50%', allowPointSelect: true, cursor: 'pointer', dataLabels: { enabled: true, format: '<b>{point.name}</strong>: {point.y} ({point.percentage:.1f}%)', style: { color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black' } } } }, legend: { @if(!$model->legend) enabled: false @endif }, series: [{ colorByPoint: true, data: [ @for ($l = 0; $l < count($model->values); $l++) { name: "{!! $model->labels[$l] !!}", y: {{ $model->values[$l] }} }, @endfor ] }] }) }); </script> @if(!$model->customId) @include('charts::_partials.container.div') @endif