如何在NVD3图表中获得y轴点数

时间:2017-06-14 13:47:36

标签: angular d3.js nvd3.js linechart angular-nvd3

我使用NVD3angular2 yAxis: { axisLabel: 'Voltage (v)', tickFormat: function(d){ this.username = d3.format('.02f')(d); return d3.format('.02f')(d); }, axisLabelDistance: -10 } <div> <nvd3 [options]="options" [data]="data"></nvd3> <p>Hello {{username}}</p> </div> 。我的折线图很好。鼠标在工具提示上的折线图显示在Yaxis 3点上。

YAxis有Line line所以我们需要在页面的某个位置显示三个点。我们试着喜欢这个

<html>

HTML

module.exports.hello = (event, context, callback) => {

  const html = `
    <!doctype html>
    <html>
      <head>
        <title>The Page Title</title>
      </head>
      <body>
        <h1>Hello</h1>
      </body>
    </html>`;

  const response = {    
    statusCode: 200, 
    headers: {
      'Content-Type': 'text/html'
    }, 
    body: html
  };

  callback(null, response);
};

我们没有得到任何东西。我错过了什么?

0 个答案:

没有答案