com.pingunaut.wicket.chartjs.core.bridge.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wicket-chartjs Show documentation
Show all versions of wicket-chartjs Show documentation
chart.js for wicket projects. simple but nice looking charts with html5/css/js
var WicketCharts = {};
// Get context with jQuery - using jQuery's .get() method.
function buildChart(markupId) {
var ctx = $('#' + markupId).get(0).getContext('2d');
return new Chart(ctx);
}