module.html 949 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 line {
  14. stroke-width: 2px;
  15. }
  16. .brush .extent {
  17. fill-opacity: .3;
  18. stroke: #fff;
  19. shape-rendering: crispEdges;
  20. }
  21. .axis line, .axis path {
  22. fill: none;
  23. stroke: #000;
  24. shape-rendering: crispEdges;
  25. }
  26. .axis text {
  27. text-shadow: 0 1px 0 #fff;
  28. cursor: move;
  29. }
  30. </style>
  31. <kibana-panel ng-controller='parallelcoordinates' ng-init="init()">
  32. <span ng-show="panel.spyable" style="position:absolute;right:0px;top:0px" class='panelextra pointer'>
  33. <i bs-modal="'partials/modal.html'" class="icon-eye-open"></i>
  34. </span>
  35. <div parallelcoordinates params="{{panel}}" style="height:{{panel.height || row.height}}"></div>
  36. </kibana-panel>