-
Notifications
You must be signed in to change notification settings - Fork 18
Description

Hello,
The above is the screenshot of our widget using jqplot to display data in the format of bar chart.
here are options we provided in the jqplot options:
{
series: [{
color: 'red'
}],
seriesDefaults: {
renderer: $.jqplot.BarRenderer,
// Show point labels to the right ('e'ast) of each bar.
// edgeTolerance of -15 allows labels flow outside the grid
// up to 15 pixels. If they flow out more than that, they
// will be hidden.
pointLabels: {
show: true,
location: 'e',
edgeTolerance: -15
},
// Rotate the bar shadow as if bar is lit from top right.
shadowAngle: 135,
// Here's where we tell the chart it is oriented horizontally.
rendererOptions: {
barDirection: 'vertical'
}
},
axes: {
yaxis: {
renderer: $.jqplot.CategoryAxisRenderer
}
}
}
But the widget is showing blank without any barcharts with the data we provided.
Thank you.