jqplot图例有问题

时间:2012-11-09 12:37:10

标签: charts jqplot legend

我正在使用jqplot。我正面临传说中的一些问题。 图例与图表的某些部分重叠。图例也被拉伸到图表的整个宽度。

这是它的外观。 enter image description here

这让它看起来很难看。 任何人都可以帮助我吗?

非常感谢任何帮助。

2 个答案:

答案 0 :(得分:2)

我的问题出在CSS中。我已经宣布了

table { width: 100%; }

所以我补充道:

.jqplot-table-legend { width: auto; }

那为我修好了!

答案 1 :(得分:1)

我在这个论坛上尝试了这个技巧

https://groups.google.com/forum/?fromgroups#!topic/jqplot-users/2ugbIYORAss

   //Take out HTML content of entire legend
    var text = jQuery("table[class='jqplot-table-legend']").html();

    //Stick it to the Legend Div Tag - of page
    //create a div tag with id='jqplotctrl_legend'
    jQuery('#jqplotctrl_legend').html(text); 

    //Set original jQPlot legend to empty 
    jQuery("table[class='jqplot-table-legend']").html('');