D3の学習を開始し、Railsでそれを試すプロジェクトを持ちたいと思っています。
私は実行中の鉄道サーバー(localhost)を持っており、これをindex.htmlに書き込んでいます:
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body { font: 12px Arial;}
path {
stroke: steelblue;
stroke-width: 2;
fill: none;
}
.axis path, .axis line {
fill: none;
stroke: grey;
stroke-width: 1; shape-rendering: crispEdges;
}
</style>
<body>
<p> Hi i am here</p>
<script src="http://d3js.org/d3.v3.min.js"></script>
</body>
さて、最初にそこに入力してブラウザで何かを見ることができる最も基本的なことは何ですか?