私はjqplotを使用しています。私は伝説に関していくつかの問題に直面しています。凡例がグラフの一部と重なっています。また、凡例はグラフの幅全体に拡大されます。
外観は次のとおりです。
これはそれを醜く見せます。誰かがこれから私を助けることができますか?
どんな助けでも大歓迎です。
私の問題はCSSにありました。もう宣言してた
table { width: 100%; }
だから私は追加しました:
.jqplot-table-legend { width: auto; }
そして、それは私のためにそれを修正しました!
このフォーラムからこのトリックを試しました
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('');