Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
c3-closed
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
charts
c3-closed
Commits
f3ce633b
Commit
f3ce633b
authored
Jun 02, 2014
by
danelkhen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanups
parent
785eb254
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
40 deletions
+4
-40
zoom2.js
htdocs/js/samples/zoom2.js
+2
-40
zoom2.html
htdocs/samples/zoom2.html
+2
-0
No files found.
htdocs/js/samples/zoom2.js
View file @
f3ce633b
///<reference path="http://localhost/cockpit/js/playground/utils.js"></script>
var
chart
;
var
chart
;
function
refresh
()
{
if
(
suspendRefresh
)
return
;
...
...
@@ -26,43 +22,20 @@ function main() {
var
xColumn
=
Array
.
generateNumbers
(
0
,
max
);
var
options
=
{
bindto
:
"#divChart"
,
//transition: { duration: 0 },
data
:
{
columns
:
[
[
"Value"
].
concat
(
column
),
[
"x"
].
concat
(
xColumn
),
],
//column
],
type
:
"line"
,
x
:
"x"
},
zoom2
:
{
enabled
:
true
,
//reducers: {
// col: "t=>Math.round(t.avg())".toLambda(),
// xColumns: "t=>t[0]".toLambda()
//}
}
};
chart
=
c3ext
.
generate
(
options
);
//var deltaY = 0;
//var leftRatio = 0;
//var el = $("#divChart");
//var timer = new Timer(doZoom);
//el.mousewheel(function (e) {
// deltaY += e.deltaY;
// leftRatio = (e.offsetX - 70) / (e.currentTarget.offsetWidth - 70);
// console.log({ "e.offsetX": e.offsetX, "e.currentTarget.offsetWidth": e.currentTarget.offsetWidth, leftRatio: leftRatio });
// timer.set(150);
// e.preventDefault();
// //if(e.deltaY>0)
// // chart.zoom2.zoomIn();
// //else if(e.deltaY<0)
// // chart.zoom2.zoomOut();
// //console.log(e.deltaX, e.deltaY, e.deltaFactor);
//});
window
.
setInterval
(
refreshStatus
,
1000
);
function
refreshStatus
()
{
...
...
@@ -75,17 +48,6 @@ function main() {
};
$
(
"#status"
).
text
(
JSON
.
stringify
(
info
,
null
,
" "
));
}
//function doZoom() {
// if (deltaY != 0) {
// var maxDelta = 10;
// var multiply = (maxDelta + deltaY) / maxDelta;
// //var factor = chart.zoom2.factor()*multiply;
// //factor= Math.ceil(factor*100) / 100;
// console.log({ deltaY: deltaY, multiply: multiply });
// chart.zoom2.zoomAndPanByRatio(multiply, leftRatio);//0.5);//leftRatio);
// deltaY = 0;
// }
//}
};
...
...
htdocs/samples/zoom2.html
View file @
f3ce633b
...
...
@@ -40,6 +40,8 @@
<button
onclick=
"chart.zoom2.reset()"
>
reset
</button>
</div>
<div
id=
"divChart"
style=
"height:300px"
></div>
<h3>
Notes
</h3>
<p>
Only 'columns' data format is supported for now.
</p>
</div>
</body>
</html>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment