Js flot 0.8.3 pie chart not resizing
I am using js flot version 0.8.3 with bootstrap 3. The resize plugin works fine with bar chart but not pie chart. Thanks for the help.
I just included the jquery, flot and resize plugins and was drawing a diagram like this:
var plot = $.plot($("#placeholder"), data, options);
Here is the jsfiddle of the pie chart:
+3
source to share
1 answer
The container container for the pie chart has a fixed width and height, so it never changes, uses relative dimensions (like view units) and it works ( see the updated fiddle ):
#placeholder{
width: 95vw;
height: 95vh;
}
0
source to share