Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

LineChart.css 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * SonarQube
  3. * Copyright (C) 2009-2021 SonarSource SA
  4. * mailto:info AT sonarsource DOT com
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 3 of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public License
  17. * along with this program; if not, write to the Free Software Foundation,
  18. * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  19. */
  20. .line-chart-path {
  21. fill: none;
  22. stroke: var(--blue);
  23. stroke-width: 2px;
  24. }
  25. .line-chart-path.line-chart-path-1 {
  26. stroke: var(--darkBlue);
  27. }
  28. .line-chart-path.line-chart-path-2 {
  29. stroke: #24c6e0;
  30. }
  31. .line-chart-area {
  32. fill: rgba(75, 159, 213, 0.3);
  33. stroke-width: 0;
  34. }
  35. .line-chart-area.line-chart-area-1 {
  36. fill: rgba(35, 106, 151, 0.3);
  37. }
  38. .line-chart-area.line-chart-area-2 {
  39. fill: rgba(36, 198, 224, 0.3);
  40. }
  41. .line-chart-point {
  42. fill: #fff;
  43. stroke: var(--blue);
  44. stroke-width: 2px;
  45. }
  46. .line-chart-tick {
  47. fill: var(--secondFontColor);
  48. font-size: var(--smallFontSize);
  49. }
  50. .line-chart-tick-x {
  51. text-anchor: end;
  52. }
  53. .line-chart-tick-x-right {
  54. text-anchor: start;
  55. }
  56. .line-chart-grid {
  57. shape-rendering: crispedges;
  58. stroke: #eee;
  59. }