module.html 1.2 KB

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