利用flot画图 为啥不显示曲线,但是当鼠标悬停在数据点的时候有该点的数据提示

mimi841112 2014-02-14 02:56:18
利用flot画图 为啥不显示曲线也不显示图形的图框线啊,但是当鼠标悬停在数据点的时候有该点的数据信息提示,同时x、y坐标值有显示,我感觉是画了曲线的,但是看不见,可是我设置了show是true的啊,不明白。求高手解答啊

var plot_options = {

grid: { hoverable: true, clickable: true},
legend: { show: true},
lines: { show: true},
points: { show: true} ,
xaxis: {ticks:10, mode: "time" , minTickSize: [1, "hour"]},
yaxis: { ticks: 5 },
selection: { mode: "xy" }
}
$.plot($("#sedi_lj"), [{label: measpoint, data: data_lj}],plot_options);
...全文
360 4 打赏 收藏 转发到动态 举报
AI 作业
写回复
用AI写文章
4 条回复
切换为时间正序
请发表友善的回复…
发表回复
mimi841112 2014-02-15
  • 打赏
  • 举报
回复
感觉对flot设置颜色参数无效 连backgroundColor:"rgb(0,0,0)",设置了背景都没变黑 还是白色的
mimi841112 2014-02-15
  • 打赏
  • 举报
回复
colors我设置了也不管用 var plot_options = { colors: ["#E3563A"], grid: { show: true, hoverable: true, clickable: true,colors:"rgb(255,0,0)"}, legend: { show: true}, lines: { show: true,color:"rgb(0,255,0)"}, points: { show: true,color:"rgb(0,0,255)"} , xaxis: {ticks:10, mode: "time" , minTickSize: [1, "hour"]}, yaxis: { ticks: 5 }, selection: { mode: "xy" } } 其中只有grid的color有效 能变换颜色 点和线还是看不见
mimi841112 2014-02-15
  • 打赏
  • 举报
回复
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <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"> <!--[if lte IE 8]><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>One of the goals of Flot is to support user interactions. Try pointing and clicking on the points.</p> <p id="hoverdata">Mouse hovers at (<span id="x">0</span>, <span id="y">0</span>). <span id="clickdata"></span></p> <p>A tooltip is easy to build with a bit of jQuery code and the data returned from the plot.</p> <p><input id="enableTooltip" type="checkbox">Enable tooltip</p> <script type="text/javascript"> $(function () { var sin = [], cos = []; for (var i = 0; i < 14; i += 0.5) { sin.push([i, Math.sin(i)]); cos.push([i, Math.cos(i)]); } var plot = $.plot($("#placeholder"), [ { data: sin, label: "sin(x)"}, { data: cos, label: "cos(x)" } ], { series: { lines: { show: true }, points: { show: true } }, grid: { hoverable: true, clickable: true }, yaxis: { min: -1.2, max: 1.2 } }); function showTooltip(x, y, contents) { $('<div id="tooltip">' + contents + '</div>').css( { position: 'absolute', display: 'none', top: y + 5, left: x + 5, border: '1px solid #fdd', padding: '2px', 'background-color': '#fee', opacity: 0.80 }).appendTo("body").fadeIn(200); } var previousPoint = null; $("#placeholder").bind("plothover", function (event, pos, item) { $("#x").text(pos.x.toFixed(2)); $("#y").text(pos.y.toFixed(2)); if ($("#enableTooltip:checked").length > 0) { if (item) { if (previousPoint != item.dataIndex) { previousPoint = item.dataIndex; $("#tooltip").remove(); var x = item.datapoint[0].toFixed(2), y = item.datapoint[1].toFixed(2); showTooltip(item.pageX, item.pageY, item.series.label + " of " + x + " = " + y); } } else { $("#tooltip").remove(); previousPoint = null; } } }); $("#placeholder").bind("plotclick", function (event, pos, item) { if (item) { $("#clickdata").text("You clicked point " + item.dataIndex + " in " + item.series.label + "."); plot.highlight(item.series, item.datapoint); } }); }); </script> </body> </html> 这段代码以html为后缀的时候能正常打开,显示里面的flot图形,为什么把代码放到php为后缀的文件中就显示不了flot图形了?
KeepSayingNo 2014-02-14
  • 打赏
  • 举报
回复
你是不是没有设置线条颜色啊,你用下面这个试试

colors: ["#2F95CC", "#D1A00C"],

87,997

社区成员

发帖
与我相关
我的任务
社区描述
Web 开发 JavaScript
社区管理员
  • JavaScript
  • 无·法
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧