Wijmo 5 - FlexGrid and FlexChart
by Manish Gupta
HTML
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="http://cdn.wijmo.com/5.latest/styles/wijmo.min.css">
<script src="http://cdn.wijmo.com/5.latest/controls/wijmo.min.js"></script>
<script src="http://cdn.wijmo.com/5.latest/controls/wijmo.grid.min.js"></script>
<script src="http://cdn.wijmo.com/5.latest/controls/wijmo.chart.min.js"></script>
<div id="theChart"></div>
CSS
.wj-flexgrid {
margin: 12px;
}
.wj-flexchart {
height: 300px;
margin: 12px;
}
body {
margin-bottom: 24pt;
}
JavaScript
onload = function() {
// create some random data
var countries = 'US,Germany,UK,Japan,Italy,Greece'.split(','),
data = [];
for (var i = 0; i < countries.length; i++) {
data.push({
country: countries[i],
downloads: Math.round(Math.random() * 20000),
sales: Math.random() * 10000,
expenses: Math.random() * 5000
});
}
// create CollectionView on the data (so grid and chart stay in sync)
var view = new wijmo.collections.CollectionView(data);
// initialize the chart
var chart = new wijmo.chart.FlexChart('#theChart', {
itemsSource: view,
bindingX: 'country',
chartType:wijmo.chart.ChartType.Bar,
series: [
{ binding: 'sales', name: 'Sales' },
{ binding: 'expenses', name: 'Expenses' },
{ binding: 'downloads', name: 'Downloads'}
],
selectionMode: wijmo.chart.SelectionMode.Point,
stacking:'Stacked100pc'
});
}