2015-11-18から1日間の記事一覧

【JavaScript】D3.js ~ 目盛を表示する ~

サンプル y軸を出力 <html> <head> <meta charset="UTF-8"> <style> .axis text { font-family: sans-serif; font-size: 11px; } .axis path, .axis line { fill: none; stroke: black; } </style> </head> <body> <div id="chart"></div> <script src="">http://d3js.org/d3.v3.js"> <script> var svg = d3.select("#chart").appen…</body></html>