gpt4 book ai didi

Jquery float 双轴

转载 作者:行者123 更新时间:2023-12-01 00:01:47 24 4
gpt4 key购买 nike

我使用 jquery flot 来显示图表...我想显示双 x 轴...两者都有相同的值..我该如何显示这个?请帮忙

问候尼桑斯

最佳答案

请检查代码,这是插件示例的来源,也请检查链接 http://people.iola.dk/olau/flot/examples/multiple-axes.html - 感谢@Mads Skjern 更正链接

这是 jflot 开发团队示例的示例部分

<html> 
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Flot Examples</title>
<link href="layout.css" rel="stylesheet" type="text/css"></link>
<!--[if IE]><script language="javascript" type="text/javascript" src="../excanvas.min.js"></script><![endif]-->
<script language="javascript" type="text/javascript" src="../jquery.js"></script>
<script language="javascript" type="text/javascript" src="../jquery.flot.js"></script>
</head>
<body>
<h1>Flot Examples</h1>

<div id="placeholder" style="width:600px;height:300px;"></div>

<p>Dual axis support showing the raw oil price in US $/barrel of
crude oil (left axis) vs. the exchange rate from US $ to € (right
axis).</p>

<p>As illustrated, you can put in secondary y and x axes if you
need to. For each data series, simply specify the axis number.</p>

<script id="source" language="javascript" type="text/javascript">
$(function () {
var oilprices = [[1167692400000,61.05], [1167778800000,58.32], [1167865200000,57.35], [1167951600000,56.31], .... some data..... [1219874400000,115.59], [1219960800000,115.46], [1220306400000,109.71], [1220392800000,109.35], [1220565600000,106.23], [1220824800000,106.34]];
var exchangerates = [[1167606000000,0.7580], [1167692400000,0.7580], [1167778800000,0.75470], ... some data..[1220738400000,0.70120], [1220824800000,0.7010], [1220911200000,0.70050]];

$.plot($("#placeholder"),
[ { data: oilprices, label: "Oil price ($)" },
{ data: exchangerates, label: "USD/EUR exchange rate", yaxis: 2 }],
{
xaxis: { mode: 'time' },
yaxis: { min: 0 },
y2axis: { tickFormatter: function (v, axis) { return v.toFixed(axis.tickDecimals) +"€" }},
legend: { position: 'sw' } });
});
</script>
</body>
</html>

关于Jquery float 双轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3262261/

24 4 0
文章推荐: jquery - 我需要在 asp.net 中屏蔽文本框
文章推荐: image-processing - 压缩数字化文档图像
文章推荐: jQuery 触发变量变化
文章推荐: jquery - ASP.Net -- jQuery 填充列表后