d3.js改变轴的颜色

时间:2014-05-19 09:00:49

标签: javascript html d3.js

我在d3.js中有一个程序(在html页面中使用),它生成图形&我想用不同的颜色标注我的轴。你能帮我吗?

$(function() {
    graph = simpleGraph()

        .title("Arduino Temperature Graph")
        .xmax(100).ymax(35)
        .xLabel("Time")
        .yLabel("Temperature");


    d3.select("#graph").call(graph)
        .attr("style", "font-size:12px;")
        .style("color", "#DE3378");


    $('#run-button').click(function() {
       setInterval(getData, 250);
        $('#run-button').html("Running...")
           .attr("disabled", true)
            .unbind();        
    });
});

0 个答案:

没有答案