29 lines
939 B
PHP
29 lines
939 B
PHP
<script type="text/javascript">
|
|
chart = google.charts.setOnLoadCallback(draw{{ $model->id }})
|
|
|
|
function draw{{ $model->id }}() {
|
|
var data = google.visualization.arrayToDataTable([
|
|
['Element', "{!! $model->element_label !!}"],
|
|
@for ($i = 0; $i < count($model->values); $i++)
|
|
["{!! $model->labels[$i] !!}", {{ $model->values[$i] }}],
|
|
@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
|