1
我得到了這個代碼使用react-chartjs。它顯示圖表,但無論我放在哪裏,每次都忽略選項。是否有另一種方法可以將選項添加到組件中?React-chartjs忽略選項
import React, { PropTypes } from 'react'
var LineChart = require("react-chartjs").Line;
var data = {
labels: ['M', 'T', 'W', 'T', 'F', 'S', 'S'],
datasets: [{
label: 'apples',
data: [12, 19, 3, 17, 6, 3, 7]
}]
};
var options = {
lineTension : 0,
fill : false,
showLines : false
};
const Graph =() => (
<span>
<h1>Heart Graph</h1>
<LineChart data={data} options={options} width="600" height="250"/>
</span>
)
export default Graph
根據http://www.chartjs.org/docs/#line-chart-dataset-structure'fill'是數據集上的一個屬性,但這對我也不起作用。 – kev