I run jqPlot , and for some reason, the colored squares that should be displayed inside the pie rendering legend do not appear. I am wondering if this is due to the fact that I use twitter bootstrap? I do not use other css libraries.
var plot1 = jQuery.jqplot('chartdiv', [graphData], { grid: { shadow: false, background: '#FFFFFF', }, seriesDefaults: { // Make this a pie chart. renderer: jQuery.jqplot.PieRenderer, rendererOptions: { // Put data labels on the pie slices. // By default, labels show the percentage of the slice. showDataLabels: true, padding: 20, startAngle: 270 } }, legend: { show: true, location: 'e', fontSize: 11, marginTop: 10, } });
jqplot
Adam levitt
source share