25 lines
778 B
PHP
25 lines
778 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.Area()
|
|
.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] }}")
|
|
.attr('fill', "{{ $model->colors[0] }}")
|
|
@endif
|
|
.renderTo('svg#{{ $model->id }}')
|
|
|
|
window.addEventListener('resize', function() {
|
|
plot.redraw()
|
|
})
|
|
});
|
|
</script>
|