Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
20848b13
Commit
20848b13
authored
Apr 17, 2013
by
Zachary Tong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mostly working parallel coordinates
parent
0c4d4aa6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
232 additions
and
97 deletions
+232
-97
panels/parallelcoordinates/module.html
+4
-5
panels/parallelcoordinates/module.js
+228
-92
No files found.
panels/parallelcoordinates/module.html
View file @
20848b13
...
@@ -3,15 +3,14 @@
...
@@ -3,15 +3,14 @@
font-size
:
14px
;
font-size
:
14px
;
}
}
.foreground
path
{
.foreground
lines
{
fill
:
none
;
fill
:
none
;
stroke-opacity
:
.5
;
stroke-opacity
:
0.3
;
stroke-width
:
1.5px
;
stroke-width
:
1.5px
;
}
}
.foreground
path
.fade
{
.foregroundlines.fade
{
stroke
:
#000
;
display
:
none
stroke-opacity
:
.05
;
}
}
.legend
{
.legend
{
...
...
panels/parallelcoordinates/module.js
View file @
20848b13
...
@@ -15,7 +15,7 @@ angular.module('kibana.parallelcoordinates', [])
...
@@ -15,7 +15,7 @@ angular.module('kibana.parallelcoordinates', [])
style
:
{
'font-size'
:
'9pt'
},
style
:
{
'font-size'
:
'9pt'
},
fields
:
[],
fields
:
[],
sortable
:
true
,
sortable
:
true
,
spyable
:
true
,
spyable
:
true
}
}
_
.
defaults
(
$scope
.
panel
,
_d
)
_
.
defaults
(
$scope
.
panel
,
_d
)
...
@@ -47,6 +47,7 @@ angular.module('kibana.parallelcoordinates', [])
...
@@ -47,6 +47,7 @@ angular.module('kibana.parallelcoordinates', [])
eventBus
.
register
(
$scope
,
'selected_fields'
,
function
(
event
,
fields
)
{
eventBus
.
register
(
$scope
,
'selected_fields'
,
function
(
event
,
fields
)
{
console
.
log
(
"selected_fields"
,
fields
);
console
.
log
(
"selected_fields"
,
fields
);
$scope
.
panel
.
fields
=
_
.
clone
(
fields
)
$scope
.
panel
.
fields
=
_
.
clone
(
fields
)
$scope
.
$emit
(
'render'
);
});
});
};
};
...
@@ -194,14 +195,6 @@ angular.module('kibana.parallelcoordinates', [])
...
@@ -194,14 +195,6 @@ angular.module('kibana.parallelcoordinates', [])
var
species
=
[
"setosa"
,
"versicolor"
,
"virginica"
],
traits
=
[
"sepal length"
,
"petal length"
,
"sepal width"
,
"petal width"
];
var
m
=
[
80
,
160
,
200
,
160
],
w
=
1280
-
m
[
1
]
-
m
[
3
],
h
=
800
-
m
[
0
]
-
m
[
2
];
var
x
,
y
,
line
,
axis
,
foreground
,
svg
;
...
@@ -211,95 +204,43 @@ angular.module('kibana.parallelcoordinates', [])
...
@@ -211,95 +204,43 @@ angular.module('kibana.parallelcoordinates', [])
*/
*/
function
init_panel
()
{
function
init_panel
()
{
scope
.
m
=
[
80
,
160
,
200
,
160
];
scope
.
w
=
$
(
elem
[
0
]).
width
()
-
scope
.
m
[
1
]
-
scope
.
m
[
3
],
scope
.
h
=
$
(
elem
[
0
]).
height
()
-
scope
.
m
[
0
]
-
scope
.
m
[
2
];
console
.
log
(
"init"
);
console
.
log
(
"init"
);
console
.
log
(
"fields"
,
scope
.
panel
.
fields
);
console
.
log
(
"fields"
,
scope
.
panel
.
fields
);
scope
.
initializing
=
true
;
scope
.
initializing
=
true
;
// Using LABjs, wait until all scripts are loaded before rendering panel
// Using LABjs, wait until all scripts are loaded before rendering panel
var
scripts
=
$LAB
.
script
(
"common/lib/d3.v3.min.js?rand="
+
Math
.
floor
(
Math
.
random
()
*
10000
))
var
scripts
=
$LAB
.
script
(
"common/lib/d3.v3.min.js?rand="
+
Math
.
floor
(
Math
.
random
()
*
10000
));
.
script
(
"panels/parallelcoordinates/lib/d3.csv.js?rand="
+
Math
.
floor
(
Math
.
random
()
*
10000
));
scripts
.
wait
(
function
()
{
scripts
.
wait
(
function
()
{
console
.
log
(
"scripts loaded"
);
scope
.
x
=
d3
.
scale
.
ordinal
().
domain
(
scope
.
panel
.
fields
).
rangePoints
([
0
,
scope
.
w
]);
scope
.
y
=
{};
x
=
d3
.
scale
.
ordinal
().
domain
(
traits
).
rangePoints
([
0
,
w
]);
y
=
{};
line
=
d3
.
svg
.
line
(
);
scope
.
line
=
d3
.
svg
.
line
().
interpolate
(
'cardinal'
);
axis
=
d3
.
svg
.
axis
().
orient
(
"left"
);
scope
.
axis
=
d3
.
svg
.
axis
().
orient
(
"left"
);
scope
.
svg
=
d3
.
select
(
elem
[
0
]).
append
(
"svg"
)
svg
=
d3
.
select
(
elem
[
0
]).
append
(
"svg"
)
.
attr
(
"width"
,
"100%"
)
.
attr
(
"width"
,
"100%"
)
.
attr
(
"height"
,
"100%"
)
.
attr
(
"height"
,
"100%"
)
.
attr
(
"viewbox"
,
"0 0 "
+
(
w
+
m
[
1
]
+
m
[
3
])
+
" "
+
(
h
+
m
[
0
]
+
m
[
2
]))
.
attr
(
"viewbox"
,
"0 0 "
+
(
scope
.
w
+
scope
.
m
[
1
]
+
scope
.
m
[
3
])
+
" "
+
(
scope
.
h
+
scope
.
m
[
0
]
+
scope
.
m
[
2
]))
.
append
(
"svg:g"
)
.
append
(
"svg:g"
)
.
attr
(
"transform"
,
"translate("
+
m
[
3
]
+
","
+
m
[
0
]
+
")"
);
.
attr
(
"transform"
,
"translate("
+
scope
.
m
[
3
]
+
","
+
scope
.
m
[
0
]
+
")"
);
console
.
log
(
"loaded"
);
//console.log(flowers);
// Add foreground lines.
// Create a scale and brush for each trait.
scope
.
foreground
=
scope
.
svg
.
append
(
"svg:g"
)
scope
.
panel
.
fields
.
forEach
(
function
(
d
)
{
.
attr
(
"class"
,
"foreground"
);
console
.
log
(
"extent"
,
d3
.
extent
(
scope
.
data
,
function
(
p
)
{
return
+
p
[
d
];
}));
y
[
d
]
=
d3
.
scale
.
linear
()
.
domain
(
d3
.
extent
(
scope
.
data
,
function
(
p
)
{
return
+
p
[
d
];
}))
.
range
([
h
,
0
]);
y
[
d
].
brush
=
d3
.
svg
.
brush
()
.
y
(
y
[
d
])
.
on
(
"brush"
,
brush
);
});
console
.
log
(
"y"
,
y
);
// Add foreground lines.
foreground
=
svg
.
append
(
"svg:g"
)
.
attr
(
"class"
,
"foreground"
)
.
selectAll
(
"path"
)
.
data
(
scope
.
data
)
.
enter
().
append
(
"svg:path"
)
.
attr
(
"d"
,
path
)
.
attr
(
"class"
,
'setosa'
);
// Add a group element for each trait.
scope
.
g
=
svg
.
selectAll
(
".trait"
)
.
data
(
scope
.
panel
.
fields
)
.
enter
().
append
(
"svg:g"
)
.
attr
(
"class"
,
"trait"
)
.
attr
(
"transform"
,
function
(
d
)
{
return
"translate("
+
x
(
d
)
+
")"
;
})
.
call
(
d3
.
behavior
.
drag
()
.
origin
(
function
(
d
)
{
return
{
x
:
x
(
d
)};
})
.
on
(
"dragstart"
,
dragstart
)
.
on
(
"drag"
,
drag
)
.
on
(
"dragend"
,
dragend
));
// Add a brush for each axis.
scope
.
g
.
append
(
"svg:g"
)
.
attr
(
"class"
,
"brush"
)
.
each
(
function
(
d
)
{
d3
.
select
(
this
).
call
(
y
[
d
].
brush
);
})
.
selectAll
(
"rect"
)
.
attr
(
"x"
,
-
8
)
.
attr
(
"width"
,
16
);
// Add an axis and title.
scope
.
g
.
append
(
"svg:g"
)
.
attr
(
"class"
,
"axis"
)
.
each
(
function
(
d
)
{
d3
.
select
(
this
).
call
(
axis
.
scale
(
y
[
d
]));
})
.
append
(
"svg:text"
)
.
attr
(
"text-anchor"
,
"middle"
)
.
attr
(
"y"
,
-
9
)
.
text
(
String
);
scope
.
initializing
=
false
;
scope
.
initializing
=
false
;
console
.
log
(
"init done"
);
render_panel
();
render_panel
();
});
});
...
@@ -308,16 +249,16 @@ angular.module('kibana.parallelcoordinates', [])
...
@@ -308,16 +249,16 @@ angular.module('kibana.parallelcoordinates', [])
// Returns the path for a given data point.
// Returns the path for a given data point.
function
path
(
d
)
{
function
path
(
d
)
{
return
line
(
scope
.
panel
.
fields
.
map
(
function
(
p
)
{
return
[
x
(
p
),
y
[
p
](
d
[
p
])];
}));
return
scope
.
line
(
scope
.
panel
.
fields
.
map
(
function
(
p
)
{
return
[
scope
.
x
(
p
),
scope
.
y
[
p
](
d
[
p
])];
}));
}
}
// Handles a brush event, toggling the display of foreground lines.
// Handles a brush event, toggling the display of foreground lines.
function
brush
()
{
function
brush
()
{
var
actives
=
scope
.
panel
.
fields
.
filter
(
function
(
p
)
{
return
!
y
[
p
].
brush
.
empty
();
}),
var
actives
=
scope
.
panel
.
fields
.
filter
(
function
(
p
)
{
return
!
scope
.
y
[
p
].
brush
.
empty
();
}),
extents
=
actives
.
map
(
function
(
p
)
{
return
y
[
p
].
brush
.
extent
();
});
extents
=
actives
.
map
(
function
(
p
)
{
return
scope
.
y
[
p
].
brush
.
extent
();
});
foreground
.
classed
(
"fade"
,
function
(
d
)
{
scope
.
foregroundLines
.
classed
(
"fade"
,
function
(
d
)
{
return
!
actives
.
every
(
function
(
p
,
i
)
{
return
!
actives
.
every
(
function
(
p
,
i
)
{
return
extents
[
i
][
0
]
<=
d
[
p
]
&&
d
[
p
]
<=
extents
[
i
][
1
];
return
extents
[
i
][
0
]
<=
d
[
p
]
&&
d
[
p
]
<=
extents
[
i
][
1
];
});
});
...
@@ -325,21 +266,29 @@ angular.module('kibana.parallelcoordinates', [])
...
@@ -325,21 +266,29 @@ angular.module('kibana.parallelcoordinates', [])
}
}
function
dragstart
(
d
)
{
function
dragstart
(
d
)
{
i
=
scope
.
panel
.
fields
.
indexOf
(
d
);
scope
.
i
=
scope
.
panel
.
fields
.
indexOf
(
d
);
console
.
log
(
"dragstart"
,
d
,
scope
.
i
)
}
}
function
drag
(
d
)
{
function
drag
(
d
)
{
x
.
range
()[
i
]
=
d3
.
event
.
x
;
console
.
log
(
"drag"
,
d
,
scope
.
i
)
scope
.
panel
.
fields
.
sort
(
function
(
a
,
b
)
{
return
x
(
a
)
-
x
(
b
);
});
scope
.
x
.
range
()[
scope
.
i
]
=
d3
.
event
.
x
;
scope
.
g
.
attr
(
"transform"
,
function
(
d
)
{
return
"translate("
+
x
(
d
)
+
")"
;
});
scope
.
panel
.
fields
.
sort
(
function
(
a
,
b
)
{
return
scope
.
x
(
a
)
-
scope
.
x
(
b
);
});
foreground
.
attr
(
"d"
,
path
);
scope
.
foregroundLines
.
attr
(
"transform"
,
function
(
d
)
{
return
"translate("
+
scope
.
x
(
d
)
+
")"
;
});
scope
.
traits
.
attr
(
"transform"
,
function
(
d
)
{
return
"translate("
+
scope
.
x
(
d
)
+
")"
;
});
scope
.
brushes
.
attr
(
"transform"
,
function
(
d
)
{
return
"translate("
+
scope
.
x
(
d
)
+
")"
;
});
scope
.
axisLines
.
attr
(
"transform"
,
function
(
d
)
{
return
"translate("
+
scope
.
x
(
d
)
+
")"
;
});
scope
.
foregroundLines
.
attr
(
"d"
,
path
);
}
}
function
dragend
(
d
)
{
function
dragend
(
d
)
{
x
.
domain
(
scope
.
panel
.
fields
).
rangePoints
([
0
,
w
]);
console
.
log
(
"dragend"
,
d
)
scope
.
x
.
domain
(
scope
.
panel
.
fields
).
rangePoints
([
0
,
scope
.
w
]);
var
t
=
d3
.
transition
().
duration
(
500
);
var
t
=
d3
.
transition
().
duration
(
500
);
t
.
selectAll
(
".trait"
).
attr
(
"transform"
,
function
(
d
)
{
return
"translate("
+
x
(
d
)
+
")"
;
});
t
.
selectAll
(
".trait"
).
attr
(
"transform"
,
function
(
d
)
{
return
"translate("
+
scope
.
x
(
d
)
+
")"
;
});
t
.
selectAll
(
".foreground path"
).
attr
(
"d"
,
path
);
t
.
selectAll
(
".axis"
).
attr
(
"transform"
,
function
(
d
)
{
return
"translate("
+
scope
.
x
(
d
)
+
")"
;
});
t
.
selectAll
(
".brush"
).
attr
(
"transform"
,
function
(
d
)
{
return
"translate("
+
scope
.
x
(
d
)
+
")"
;
});
t
.
selectAll
(
".foregroundlines"
).
attr
(
"d"
,
path
);
}
}
...
@@ -351,8 +300,195 @@ angular.module('kibana.parallelcoordinates', [])
...
@@ -351,8 +300,195 @@ angular.module('kibana.parallelcoordinates', [])
*/
*/
function
render_panel
()
{
function
render_panel
()
{
var
width
=
$
(
elem
[
0
]).
width
(),
console
.
log
(
"render_panel"
);
height
=
$
(
elem
[
0
]).
height
();
scope
.
x
=
d3
.
scale
.
ordinal
().
domain
(
scope
.
panel
.
fields
).
rangePoints
([
0
,
scope
.
w
]);
scope
.
y
=
{};
scope
.
line
=
d3
.
svg
.
line
().
interpolate
(
'cardinal'
);
scope
.
axis
=
d3
.
svg
.
axis
().
orient
(
"left"
);
var
colorExtent
=
d3
.
extent
(
scope
.
data
,
function
(
p
)
{
return
+
p
[
'phpmemory'
];
});
scope
.
colors
=
d3
.
scale
.
linear
()
.
domain
([
colorExtent
[
0
],
colorExtent
[
1
]])
.
range
([
"#4580FF"
,
"#FF9245"
]);
scope
.
panel
.
fields
.
forEach
(
function
(
d
)
{
scope
.
y
[
d
]
=
d3
.
scale
.
linear
()
.
domain
(
d3
.
extent
(
scope
.
data
,
function
(
p
)
{
return
+
p
[
d
];
}))
.
range
([
scope
.
h
,
0
]);
scope
.
y
[
d
].
brush
=
d3
.
svg
.
brush
()
.
y
(
scope
.
y
[
d
])
.
on
(
"brush"
,
brush
);
});
console
.
log
(
"render y"
,
scope
.
y
);
var
activeData
=
_
.
map
(
scope
.
data
,
function
(
d
)
{
var
t
=
{};
_
.
each
(
scope
.
panel
.
fields
,
function
(
f
)
{
t
[
f
]
=
d
[
f
];
});
return
t
;
});
scope
.
foregroundLines
=
scope
.
foreground
.
selectAll
(
".foregroundlines"
)
.
data
(
activeData
,
function
(
d
,
i
){
var
id
=
""
;
_
.
each
(
d
,
function
(
v
)
{
id
+=
i
+
"_"
+
v
;
});
return
id
;
});
scope
.
foregroundLines
.
enter
().
append
(
"svg:path"
)
.
attr
(
"d"
,
path
)
.
attr
(
"class"
,
"foregroundlines"
)
.
attr
(
"style"
,
function
(
d
)
{
return
"stroke:"
+
scope
.
colors
(
d
.
phpmemory
)
+
";"
;
});
scope
.
foregroundLines
.
exit
().
remove
();
console
.
log
(
"Render Fields"
,
scope
.
panel
.
fields
);
scope
.
traits
=
scope
.
svg
.
selectAll
(
".trait"
)
.
data
(
scope
.
panel
.
fields
,
String
);
scope
.
traits
.
enter
().
append
(
"svg:g"
)
.
attr
(
"class"
,
"trait"
)
.
attr
(
"transform"
,
function
(
d
)
{
return
"translate("
+
scope
.
x
(
d
)
+
")"
;
});
scope
.
brushes
=
scope
.
svg
.
selectAll
(
".brush"
)
.
data
(
scope
.
panel
.
fields
,
String
);
scope
.
brushes
.
enter
()
.
append
(
"svg:g"
)
.
attr
(
"class"
,
"brush"
)
.
each
(
function
(
d
)
{
d3
.
select
(
this
)
.
call
(
scope
.
y
[
d
].
brush
)
.
attr
(
"transform"
,
function
(
d
)
{
return
"translate("
+
scope
.
x
(
d
)
+
")"
;
});
})
.
selectAll
(
"rect"
)
.
attr
(
"x"
,
-
8
)
.
attr
(
"width"
,
16
);
scope
.
brushes
.
each
(
function
(
d
)
{
d3
.
select
(
this
)
.
call
(
scope
.
y
[
d
].
brush
)
.
attr
(
"transform"
,
function
(
d
)
{
return
"translate("
+
scope
.
x
(
d
)
+
")"
;
});
});
scope
.
axisLines
=
scope
.
svg
.
selectAll
(
".axis"
)
.
data
(
scope
.
panel
.
fields
,
String
);
scope
.
axisLines
.
enter
()
.
append
(
"svg:g"
)
.
attr
(
"class"
,
"axis"
)
.
each
(
function
(
d
)
{
console
.
log
(
"axis"
,
d
)
d3
.
select
(
this
)
.
call
(
scope
.
axis
.
scale
(
scope
.
y
[
d
]))
.
attr
(
"transform"
,
function
(
d
)
{
return
"translate("
+
scope
.
x
(
d
)
+
")"
;
});
}).
call
(
d3
.
behavior
.
drag
()
.
origin
(
function
(
d
)
{
return
{
x
:
scope
.
x
(
d
)};
})
.
on
(
"dragstart"
,
dragstart
)
.
on
(
"drag"
,
drag
)
.
on
(
"dragend"
,
dragend
))
.
append
(
"svg:text"
)
.
attr
(
"text-anchor"
,
"middle"
)
.
attr
(
"y"
,
-
9
)
.
text
(
String
);
scope
.
brushes
.
exit
().
remove
();
scope
.
axisLines
.
exit
().
remove
();
scope
.
traits
.
exit
().
remove
();
dragend
();
/*
// Add a brush for each axis.
scope.brushes = scope.g.append("svg:g")
.attr("class", "brush");
scope.axisLines = scope.g.append("svg:g")
.attr("class", "axis");
//Draw the brushes
//If the field is no longer in the list of actives,
//remove the element. Sorta like a poor-man's enter() / exit()
scope.brushes
.each(function(d) {
if (typeof scope.y[d] !== 'undefined') {
console.log("brushes.each", d);
d3.select(this).attr("style", "display").call(scope.y[d].brush);
} else {
console.log("none");
d3.select(this).attr("style", "display:none");
}
})
.selectAll("rect")
.attr("x", -8)
.attr("width", 16);
//Draw the axis lines
//If the field is no longer in the list of actives,
//remove the element. Sorta like a poor-man's enter() / exit()
scope.axisLines
.each(function(d) {
if (typeof scope.y[d] !== 'undefined') {
d3.select(this).attr("style", "display").call(scope.axis.scale(scope.y[d]));
} else {
d3.select(this).attr("style", "display:none");
}
})
.append("svg:text")
.attr("text-anchor", "middle")
.attr("y", -9)
.text(String)
.call(dragend); //call dragend so that the axis reshuffle.
*/
}
}
...
...
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