jqplot plugin: bug with charts

jqplot plugin: bug with charts

hi! when I trying to make a pie chart with values like:
  1. [[1, 10000], [2, 50]]

between which is big difference I get a chart like: http://img819.imageshack.us/img819/4071/chartscreenshot.png
here is my code:

  1. line1 = [[1, 10000], [2, 50]];
    $.jqplot("chart", [line1], {
       grid: {
         drawGridlines:true,
         background: "#ffffff",
         borderWidth: 1,
         shadow: true
       },
       title: Chart,
       seriesDefaults: {
         renderer: $.jqplot.PieRenderer,
         rendererOptions: {
         sliceMargin:8
        }
       },
       legend: { show:true }
    });















maybe i'm doing something wrong?