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

25 lines
722 B
PHP

@include('charts::_partials.container.svg')
<script type="text/javascript">
$(function() {
@include('charts::minimalist._data.one')
var xScale = new Plottable.Scales.Category()
var yScale = new Plottable.Scales.Linear()
var plot = new Plottable.Plots.Line()
.addDataset(new Plottable.Dataset(data))
.x(function(d) { return d.x; }, xScale)
.y(function(d) { return d.y; }, yScale)
@if($model->colors)
.attr('stroke', "{{ $model->colors[0] }}")
@endif
.renderTo('svg#{{ $model->id }}')
window.addEventListener('resize', function() {
plot.redraw()
})
});
</script>