Skip to content

Instantly share code, notes, and snippets.

@EliuTimana
Last active September 13, 2015 02:12
Show Gist options
  • Save EliuTimana/32dc1edaba8c02cb8f88 to your computer and use it in GitHub Desktop.
Save EliuTimana/32dc1edaba8c02cb8f88 to your computer and use it in GitHub Desktop.
JpPlot Horizonal Bar Chart
jQuery.jqplot.config.enablePlugins = true;
jQuery.jqplot('grafico', [data],{
animate: true,
seriesDefaults: {
renderer: jQuery.jqplot.BarRenderer,
pointLabels: {
show: true
},
rendererOptions:{
barDirection: 'horizontal'
}
},
axes:{
yaxis:{
renderer: jQuery.jqplot.CategoryAxisRenderer,
ticks: ejex
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment