module.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <style>
  2. svg {
  3. font-size: 14px;
  4. }
  5. .foregroundlines {
  6. fill: none;
  7. stroke-opacity: 0.3;
  8. stroke-width: 1.5px;
  9. }
  10. .foregroundlines.fade {
  11. display:none
  12. }
  13. .legend {
  14. font-size: 18px;
  15. font-style: oblique;
  16. }
  17. .legend line {
  18. stroke-width: 2px;
  19. }
  20. .setosa {
  21. stroke: #800;
  22. }
  23. .versicolor {
  24. stroke: #080;
  25. }
  26. .virginica {
  27. stroke: #008;
  28. }
  29. .brush .extent {
  30. fill-opacity: .3;
  31. stroke: #fff;
  32. shape-rendering: crispEdges;
  33. }
  34. .axis line, .axis path {
  35. fill: none;
  36. stroke: #000;
  37. shape-rendering: crispEdges;
  38. }
  39. .axis text {
  40. text-shadow: 0 1px 0 #fff;
  41. cursor: move;
  42. }
  43. </style>
  44. <kibana-panel ng-controller='parallelcoordinates' ng-init="init()">
  45. <span ng-show="panel.spyable" style="position:absolute;right:0px;top:0px" class='panelextra pointer'>
  46. <i bs-modal="'partials/modal.html'" class="icon-eye-open"></i>
  47. </span>
  48. <div parallelcoordinates params="{{panel}}" style="height:{{panel.height || row.height}}"></div>
  49. </kibana-panel>