| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- $(function () {
- var sin = [], cos = [];
- for (var i = 0; i < 9; i += 0.8) {
- sin.push([i, Math.sin(i)]);
- cos.push([i, Math.cos(i)]);
- }
-
- var plot = $.plot($(".chartS"),
- [ { 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.1, max: 1.1 },
- xaxis: { min: 0, max: 8 }
- });
-
- function showTooltip(x, y, contents) {
- $('<div id="tooltip" class="tooltip">' + contents + '</div>').css( {
- position: 'absolute',
- display: 'none',
- top: y + 5,
- left: x + 5,
- 'z-index': '9999',
- 'color': '#fff',
- 'font-size': '11px',
- opacity: 0.8
- }).appendTo("body").fadeIn(200);
- }
-
- var previousPoint = null;
- $(".chartS").bind("plothover", function (event, pos, item) {
- $("#x").text(pos.x.toFixed(2));
- $("#y").text(pos.y.toFixed(2));
-
- if ($(".chartS").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;
- }
- }
- });
-
- $(".chartS").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);
- }
- });
- });
|