ultimatepos/resources/views/vendor/charts/minimalist/pie.blade.php

27 lines
859 B
PHP

@include('charts::_partials.container.svg')
<script type="text/javascript">
$(function() {
@include('charts::minimalist._data.one-indcolor')
var xScale = new Plottable.Scales.Category()
var yScale = new Plottable.Scales.Linear()
var xAxis = new Plottable.Axes.Category(xScale, 'bottom')
var yAxis = new Plottable.Axes.Numeric(yScale, 'left')
var plot = new Plottable.Plots.Pie()
.addDataset(new Plottable.Dataset(data))
.sectorValue(function(d) { return d.y; }, yScale)
@if($model->colors)
.attr('fill', function(d) { return d.color; })
@endif
.outerRadius(500, yScale)
.renderTo('svg#{{ $model->id }}')
window.addEventListener('resize', function() {
plot.redraw()
})
});
</script>