I am trying to use jqPlot for a bar graph and I can't get it to show anything.

I have included the jqPlot code and all the plugins. I am not receiving any errors whatsoever

I have copied the example code directly:

html:

<div id="jqplot" class="plot">

</div>

Javascript:

"use strict";
(function ($){

        $.jqplot('jqplot',  [[[1, 2],[3,5.12],[5,13.1],[7,33.6],[9,85.9],[11,219.9]]]);

})(jQuery);

It is adding the class 'jqplot-target' to the 'jqplot' div so the javascript must be working, yet it is not adding a canvas/chart to the div, it displays just an empty div with the added class to it.

Any ideas why this is not rendering?

I am using html5boilerplate as well, but I can't find any known issues with the two of them.

Thanks,

Thomas

UPDATE: I found the problem. I had the main container div that the jqplot is inside set to display:none on page load and once you click the 'enter' button is shows with .fadeIn()

I suppose it can't add the canvas when the parent is display: none; - I've got it to work by calling the $.jqplot inside the function that fades in the main container after the user clicks enter...

link|improve this question

70% accept rate
feedback

1 Answer

Can you show what your CSS is doing to the class "plot"? The jqPlot Usage page says that you need to be sure to add width and height to the plot target.

link|improve this answer
I added width/height directly to #jqplot as well I've changed it to this <div id="jqplot" style="height:400px;width:300px;"></div> and it is still not rendering. When I do this in a blank page with no boilerplate it renders fine... – tsdexter Nov 29 '11 at 22:24
Thanks for the input. I've found the problem. See updated question. – tsdexter Nov 29 '11 at 22:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.