1、绘制坐标轴
绘制svg
<div id = "container"></div>
----------
var svg_w = 500, // svg的宽度
svg_h = 400, // svg的高度
g_left = 50, // 坐标系离svg的左边距
g_top = 50, // 坐标系离svg的上边距
g_w = svg_w - 2 * g_left, // 坐标系的宽度
g_h = svg_h - 2 * g_top; // 坐标系的高度
// 绘制svg
var svg = d3.select