Plottable.js折线图不显示

时间:2016-05-19 22:08:02

标签: javascript google-chrome-extension plottable.js plottable

图表为黑色,如附图所示。这是一个chrome扩展。当我点击弹出窗口上的inspect时,定义了plottable / d3元素,因此似乎可以将plottable用于html Plottable display black

    function drawChart() {

    let xScale = new Plottable.Scales.Linear(),
        yScale = new Plottable.Scales.Linear(),
        xAxis = new Plottable.Axes.Numeric(xScale, "bottom"),
        yAxis = new Plottable.Axes.Numeric(yScale, "left"),
        plot: Plottable.Plots.Line<number> = new Plottable.Plots.Line();
    plot.x(d => d.x, xScale);
    plot.y(d => d.y, yScale);
    let data = [
        { "x": 0, "y": 1 },
        { "x": 1, "y": 2 },
        { "x": 2, "y": 4 },
        { "x": 3, "y": 8 }
    ],
        dataset: Plottable.Dataset = new Plottable.Dataset(data);
    plot.addDataset(dataset);

    let chart: Plottable.Components.Table = new Plottable.Components.Table([
        [yAxis, plot],
        [null, xAxis]
    ]);
    chart.renderTo("svg#VisitorChart");
}


$(document).ready(function() {
    drawChart();
});

1 个答案:

答案 0 :(得分:2)

Plottable.css 文件似乎丢失。

包含文件可以解决此问题。