为什么 Plottable 不显示完整图表?
Why is Plottable not showing the full chart?
我(终于)没有错误,但我得到的只是一个没有任何数据的 x 轴。我错过了什么?我是 运行 这个来自 vsCode 的 Live Server 插件。此外,还有两个 plottable 标签:plottable 和 plottable.js。有没有办法摆脱一个而只使用另一个?因此,当有更多 Plottable 问题时,它们不会分散开来。
您可以在此处找到图片:https://imgur.com/a/ATiF3tU
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Testing Plottable</title>
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/4.5.0/d3.js" charset="utf-8"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="//unpkg.com/plottable/plottable.js" charset="utf-8"></script>
<script src="index.js"></script>
<link rel="stylesheet" type="text/css" href="//unpkg.com/plottable/plottable.css">
</head>
<body>
<p>testing plottable.js</p>
<div id="example"></div>
</body>
</html>
JavaScript
function makeBasicChart() {
var xScale = new Plottable.Scales.Linear();
var yScale = new Plottable.Scales.Linear();
var xAxis = new Plottable.Axes.Numeric(xScale, "bottom");
var yAxis = new Plottable.Axes.Numeric(yScale, "left");
var plot = new Plottable.Plots.Line();
plot.x(function(d) { return d.x; }, xScale);
plot.y(function(d) { return d.y; }, yScale);
var data = [
{ "x": 0, "y": 1 },
{ "x": 1, "y": 2 },
{ "x": 2, "y": 4 },
{ "x": 3, "y": 8 }
];
var dataset = new Plottable.Dataset(data);
plot.addDataset(dataset);
var chart = new Plottable.Components.Table([
[yAxis, plot],
[null, xAxis]
]);
chart.renderTo("div#example");
}
$(document).ready(function() {
makeBasicChart();
});
plottable.css 正在影响渲染。我试着检查元素。 div 与 class="component table" 和 class="component axis y-axis" 的顶部、高度和宽度样式需要根据您的要求进行更改。
我(终于)没有错误,但我得到的只是一个没有任何数据的 x 轴。我错过了什么?我是 运行 这个来自 vsCode 的 Live Server 插件。此外,还有两个 plottable 标签:plottable 和 plottable.js。有没有办法摆脱一个而只使用另一个?因此,当有更多 Plottable 问题时,它们不会分散开来。
您可以在此处找到图片:https://imgur.com/a/ATiF3tU
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Testing Plottable</title>
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/4.5.0/d3.js" charset="utf-8"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="//unpkg.com/plottable/plottable.js" charset="utf-8"></script>
<script src="index.js"></script>
<link rel="stylesheet" type="text/css" href="//unpkg.com/plottable/plottable.css">
</head>
<body>
<p>testing plottable.js</p>
<div id="example"></div>
</body>
</html>
JavaScript
function makeBasicChart() {
var xScale = new Plottable.Scales.Linear();
var yScale = new Plottable.Scales.Linear();
var xAxis = new Plottable.Axes.Numeric(xScale, "bottom");
var yAxis = new Plottable.Axes.Numeric(yScale, "left");
var plot = new Plottable.Plots.Line();
plot.x(function(d) { return d.x; }, xScale);
plot.y(function(d) { return d.y; }, yScale);
var data = [
{ "x": 0, "y": 1 },
{ "x": 1, "y": 2 },
{ "x": 2, "y": 4 },
{ "x": 3, "y": 8 }
];
var dataset = new Plottable.Dataset(data);
plot.addDataset(dataset);
var chart = new Plottable.Components.Table([
[yAxis, plot],
[null, xAxis]
]);
chart.renderTo("div#example");
}
$(document).ready(function() {
makeBasicChart();
});
plottable.css 正在影响渲染。我试着检查元素。 div 与 class="component table" 和 class="component axis y-axis" 的顶部、高度和宽度样式需要根据您的要求进行更改。