I can't make a right legend by d3.js -
the traditional (and versatile) way creating such legends among d3 community using <text>
, <rect>
svg elements (which can position way want). once you're using html <li>
, try 1 of these 2 approaches in css:
li { display: inline; }
or
li { float: left; }
Comments
Post a Comment