2

私はjqplotを使用しています。私は伝説に関していくつかの問題に直面しています。凡例がグラフの一部と重なっています。また、凡例はグラフの幅全体に拡大されます。

外観は次のとおりです。 ここに画像の説明を入力してください

これはそれを醜く見せます。誰かがこれから私を助けることができますか?

どんな助けでも大歓迎です。

4

2 に答える 2

2

私の問題はCSSにありました。もう宣言してた

table { width: 100%; }

だから私は追加しました:

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

そして、それは私のためにそれを修正しました!

于 2013-11-29T22:33:35.767 に答える
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('');
于 2013-06-04T21:07:25.107 に答える