2
我使用DataMaps來製作一個choropleth,但在修改圖例時遇到問題。我想讓傳說垂直並在地圖的右側。文件不清楚如何做到這一點。我如何創建一個堆疊/垂直的圖例?在數據地圖中製作垂直圖例
我用下面的代碼來創建的傳說:
var legend_params = {
legendTitle: "Some Test Data",
};
map.legend(legend_params);
而這裏試圖修改它的CSS:
.datamaps {
position: relative;
display: inline-block;
text-align: center;
}
.datamaps-legend {
color: white;
right: -100px;
top: 0;
position: relative;
display: inline-block;
text-align: center;
}
.datamaps-legend dl {
text-align: center;
display: inline-block;
position: static;
}
@markmarkoh想法? – Nancy