39 lines
1.2 KiB
PHP
39 lines
1.2 KiB
PHP
<script type="text/javascript">
|
|
chart = google.charts.setOnLoadCallback(draw{{ $model->id }})
|
|
|
|
function draw{{ $model->id }}() {
|
|
var data = google.visualization.arrayToDataTable([
|
|
[
|
|
'Element',
|
|
@for ($i = 0; $i < count($model->datasets); $i++)
|
|
"{{ $model->datasets[$i]['label'] }}",
|
|
@endfor
|
|
],
|
|
@for($l = 0; $l < count($model->labels); $l++)
|
|
[
|
|
"{{ $model->labels[$l] }}",
|
|
@for ($i = 0; $i < count($model->datasets); $i++)
|
|
{{ $model->datasets[$i]['values'][$l] }},
|
|
@endfor
|
|
],
|
|
@endfor
|
|
])
|
|
|
|
var options = {
|
|
@include('charts::_partials.dimension.js')
|
|
fontSize: 12,
|
|
@include('charts::google.titles')
|
|
@include('charts::google.colors')
|
|
legend: { position: 'top', alignment: 'end' }
|
|
};
|
|
|
|
var {{ $model->id }} = new google.visualization.AreaChart(document.getElementById("{{ $model->id }}"))
|
|
|
|
{{ $model->id }}.draw(data, options)
|
|
}
|
|
</script>
|
|
|
|
@if(!$model->customId)
|
|
@include('charts::_partials.container.div')
|
|
@endif
|