@carbon/charts 0.30.17 → 0.30.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (111) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/build/demo/data/create-codesandbox.d.ts +37 -0
  3. package/build/demo/data/index.d.ts +6 -0
  4. package/build/demo/data/line.d.ts +21 -0
  5. package/build/demo/data/radar.d.ts +42 -0
  6. package/build/src/charts/index.d.ts +1 -0
  7. package/build/src/charts/radar.d.ts +6 -0
  8. package/build/src/components/axes/grid.d.ts +0 -4
  9. package/build/src/components/axes/ruler.d.ts +17 -0
  10. package/build/src/components/essentials/tooltip-radar.d.ts +4 -0
  11. package/build/src/components/graphs/radar.d.ts +22 -0
  12. package/build/src/components/index.d.ts +2 -0
  13. package/build/src/configuration.d.ts +2 -1
  14. package/build/src/interfaces/charts.d.ts +22 -0
  15. package/build/src/interfaces/enums.d.ts +16 -0
  16. package/build/src/interfaces/events.d.ts +9 -0
  17. package/build/src/services/angle-utils.d.ts +205 -0
  18. package/build/src/tools.d.ts +3 -0
  19. package/build/stories/tutorials/getting-started/angular.d.ts +1 -0
  20. package/build/stories/tutorials/getting-started/react.d.ts +1 -0
  21. package/build/stories/tutorials/getting-started/vanilla.d.ts +1 -0
  22. package/build/stories/tutorials/getting-started/vue.d.ts +1 -0
  23. package/build/stories/tutorials/index.d.ts +5 -0
  24. package/build/stories/tutorials/tabular-data-format.d.ts +1 -0
  25. package/bundle.js +1 -1
  26. package/charts/bubble.js +2 -1
  27. package/charts/bubble.js.map +1 -1
  28. package/charts/index.d.ts +1 -0
  29. package/charts/index.js +1 -0
  30. package/charts/index.js.map +1 -1
  31. package/charts/line.js +2 -1
  32. package/charts/line.js.map +1 -1
  33. package/charts/radar.d.ts +6 -0
  34. package/charts/radar.js +51 -0
  35. package/charts/radar.js.map +1 -0
  36. package/charts/scatter.js +2 -1
  37. package/charts/scatter.js.map +1 -1
  38. package/components/axes/grid.d.ts +0 -4
  39. package/components/axes/grid.js +0 -39
  40. package/components/axes/grid.js.map +1 -1
  41. package/components/axes/ruler.d.ts +17 -0
  42. package/components/axes/ruler.js +177 -0
  43. package/components/axes/ruler.js.map +1 -0
  44. package/components/essentials/tooltip-radar.d.ts +4 -0
  45. package/components/essentials/tooltip-radar.js +42 -0
  46. package/components/essentials/tooltip-radar.js.map +1 -0
  47. package/components/graphs/bubble.js +2 -0
  48. package/components/graphs/bubble.js.map +1 -1
  49. package/components/graphs/radar.d.ts +22 -0
  50. package/components/graphs/radar.js +397 -0
  51. package/components/graphs/radar.js.map +1 -0
  52. package/components/index.d.ts +2 -0
  53. package/components/index.js +2 -0
  54. package/components/index.js.map +1 -1
  55. package/configuration.d.ts +2 -1
  56. package/configuration.js +30 -2
  57. package/configuration.js.map +1 -1
  58. package/demo/data/bundle.js +1 -1
  59. package/demo/data/create-codesandbox.d.ts +29 -0
  60. package/demo/data/create-codesandbox.js +49 -0
  61. package/demo/data/create-codesandbox.js.map +1 -1
  62. package/demo/data/index.d.ts +6 -0
  63. package/demo/data/index.js +34 -1
  64. package/demo/data/index.js.map +1 -1
  65. package/demo/data/line.d.ts +21 -0
  66. package/demo/data/line.js +58 -0
  67. package/demo/data/line.js.map +1 -1
  68. package/demo/data/radar.d.ts +42 -0
  69. package/demo/data/radar.js +101 -0
  70. package/demo/data/radar.js.map +1 -0
  71. package/demo/styles.css +88 -0
  72. package/demo/styles.css.map +1 -1
  73. package/demo/styles.min.css +1 -1
  74. package/demo/styles.min.css.map +1 -1
  75. package/demo/tsconfig.tsbuildinfo +29 -15
  76. package/interfaces/charts.d.ts +22 -0
  77. package/interfaces/charts.js.map +1 -1
  78. package/interfaces/enums.d.ts +16 -0
  79. package/interfaces/enums.js +18 -0
  80. package/interfaces/enums.js.map +1 -1
  81. package/interfaces/events.d.ts +9 -0
  82. package/interfaces/events.js +10 -0
  83. package/interfaces/events.js.map +1 -1
  84. package/package.json +1 -1
  85. package/services/angle-utils.d.ts +16 -0
  86. package/services/angle-utils.js +55 -0
  87. package/services/angle-utils.js.map +1 -0
  88. package/styles/components/_ruler.scss +21 -0
  89. package/styles/components/index.scss +1 -0
  90. package/styles/graphs/_radar.scss +22 -0
  91. package/styles/graphs/index.scss +1 -0
  92. package/styles-g10.css +24 -0
  93. package/styles-g10.css.map +1 -1
  94. package/styles-g10.min.css +1 -1
  95. package/styles-g10.min.css.map +1 -1
  96. package/styles-g100.css +24 -0
  97. package/styles-g100.css.map +1 -1
  98. package/styles-g100.min.css +1 -1
  99. package/styles-g100.min.css.map +1 -1
  100. package/styles-g90.css +24 -0
  101. package/styles-g90.css.map +1 -1
  102. package/styles-g90.min.css +1 -1
  103. package/styles-g90.min.css.map +1 -1
  104. package/styles.css +24 -0
  105. package/styles.css.map +1 -1
  106. package/styles.min.css +1 -1
  107. package/styles.min.css.map +1 -1
  108. package/tools.d.ts +3 -0
  109. package/tools.js +4 -1
  110. package/tools.js.map +1 -1
  111. package/tsconfig.tsbuildinfo +136 -29
@@ -102,6 +102,7 @@ export interface ScatterChartOptions extends AxisChartOptions {
102
102
  */
103
103
  radius: number;
104
104
  fillOpacity?: number;
105
+ filled?: boolean;
105
106
  };
106
107
  }
107
108
  /**
@@ -177,3 +178,24 @@ export interface DonutChartOptions extends PieChartOptions {
177
178
  };
178
179
  };
179
180
  }
181
+ /**
182
+ * options specific to radar charts
183
+ */
184
+ export interface RadarChartOptions extends BaseChartOptions {
185
+ radar?: {
186
+ opacity: {
187
+ unselected: number;
188
+ selected: number;
189
+ };
190
+ axes: {
191
+ angle: string;
192
+ value: string;
193
+ };
194
+ xLabelPadding: number;
195
+ yLabelPadding: number;
196
+ yTicksNumber: number;
197
+ minRange: number;
198
+ xAxisRectHeight: number;
199
+ dotsRadius: number;
200
+ };
201
+ }
@@ -1 +1 @@
1
- {"version":3,"file":"charts.js","sourceRoot":"","sources":["charts.ts"],"names":[],"mappings":"","sourcesContent":["import { LegendOptions, TooltipOptions, GridOptions, AxesOptions } from \"./index\";\nimport { AxisTooltipOptions, BarTooltipOptions, BarOptions, StackedBarOptions } from \"./components\";\n\n/**\n * Base chart options common to any chart\n */\nexport interface BaseChartOptions {\n\t/**\n\t * boolean to disable animations (enabled by default)\n\t */\n\tanimations?: boolean;\n\t/**\n\t * boolean to prevent the container from resizing\n\t */\n\tresizable?: boolean;\n\t/**\n\t * Optionally specify a width for the chart\n\t */\n\twidth?: string;\n\t/**\n\t * Optionally specify a height for the chart\n\t */\n\theight?: string;\n\t/**\n\t * tooltip configuration\n\t */\n\ttooltip?: TooltipOptions;\n\t/**\n\t * legend configuration\n\t */\n\tlegend?: LegendOptions;\n\t/**\n\t * Optional function to determine whether is filled based on datasetLabel, label, and/or data\n\t */\n\tgetIsFilled?: (datasetLabel: any, label?: any, data?: any, defaultFilled?: boolean) => boolean;\n\t/**\n\t * Optional function to generate the fill color based on datasetLabel, label, and/or data\n\t */\n\tgetFillColor?: (datasetLabel: any, label?: any, data?: any, defaultFillColor?: string) => string;\n\t/**\n\t * Optional function to generate the stroke color based on datasetLabel, label, and/or data\n\t */\n\tgetStrokeColor?: (datasetLabel: any, label?: any, data?: any, defaultStrokeColor?: string) => string;\n\t/**\n\t * stylesheet options\n\t */\n\tstyle?: {\n\t\t/**\n\t\t * optional prefixing string for css classes (defaults to 'cc')\n\t\t */\n\t\tprefix?: string;\n\t};\n\t/**\n\t * options related to charting data\n\t */\n\tdata?: {\n\t\t/**\n\t\t * identifier for data groups\n\t\t */\n\t\tgroupMapsTo?: string;\n\t};\n\t/**\n\t * options related to color scales\n\t */\n\tcolor?: {\n\t\t/**\n\t\t * e.g. { \"Dataset 1\": \"blue\" }\n\t\t */\n\t\tscale?: object;\n\t};\n}\n\n/**\n * Options common to any chart with an axis\n */\nexport interface AxisChartOptions extends BaseChartOptions {\n\taxes?: AxesOptions;\n\tgrid?: GridOptions;\n\ttooltip?: AxisTooltipOptions;\n}\n\n/**\n * options specific to bar charts\n */\nexport interface BarChartOptions extends AxisChartOptions {\n\tbars?: BarOptions;\n\ttooltip?: BarTooltipOptions;\n}\n\n/**\n * options specific to stacked bar charts\n */\nexport interface StackedBarChartOptions extends BarChartOptions {\n\tbars?: StackedBarOptions;\n}\n\n/**\n * options specific to scatter charts\n */\nexport interface ScatterChartOptions extends AxisChartOptions {\n\t/**\n\t * options for the points\n\t */\n\tpoints?: {\n\t\t/**\n\t\t * sets the radius of the point\n\t\t */\n\t\tradius: number;\n\t\tfillOpacity?: number;\n\t};\n}\n\n/**\n * options specific to bubble charts\n */\nexport interface BubbleChartOptions extends AxisChartOptions {\n\t/**\n\t * options for the individual bubbles\n\t */\n\tbubble?: {\n\t\t/**\n\t\t * the key to lookup in charting data for the bubble radius value\n\t\t */\n\t\tradiusMapsTo?: string;\n\t\t/**\n\t\t * A function that would determine the range of the bubble radius to use\n\t\t * Returns an array with the 1st value being the min and the 2nd value being the max radius\n\t\t */\n\t\tradiusRange?: Function;\n\t\t/**\n\t\t * Opacity of the fills used within each circle\n\t\t */\n\t\tfillOpacity?: number;\n\t};\n}\n\n/**\n * options specific to line charts\n */\nexport interface LineChartOptions extends ScatterChartOptions {\n\t/**\n\t * options for the curve of the line\n\t */\n\tcurve?: string | {\n\t\tname: string;\n\t};\n}\n\n/**\n * options specific to pie charts\n */\nexport interface PieChartOptions extends BaseChartOptions {\n\tpie?: {\n\t\tradiusOffset?: number;\n\t\tinnerRadius?: number;\n\t\tpadAngle?: number;\n\t\thoverArc?: {\n\t\t\touterRadiusOffset?: number;\n\t\t};\n\t\txOffset?: number;\n\t\tyOffset?: number;\n\t\tyOffsetCallout?: number;\n\t\tcallout?: {\n\t\t\tminSliceDegree?: number;\n\t\t\toffsetX?: number,\n\t\t\toffsetY?: number;\n\t\t\thorizontalLineLength?: number;\n\t\t\ttextMargin?: number;\n\t\t},\n\t\tlabels?: {\n\t\t\tformatter?: Function;\n\t\t}\n\t};\n}\n\n\n\n/**\n * options specific to donut charts\n */\nexport interface DonutChartOptions extends PieChartOptions {\n\tdonut?: {\n\t\tcenter?: {\n\t\t\tnumberFontSize?: Function;\n\t\t\ttitleFontSize?: Function;\n\t\t\ttitleYPosition?: Function;\n\t\t\tnumberFormatter?: Function;\n\t\t};\n\t};\n}\n"]}
1
+ {"version":3,"file":"charts.js","sourceRoot":"","sources":["charts.ts"],"names":[],"mappings":"","sourcesContent":["import { LegendOptions, TooltipOptions, GridOptions, AxesOptions } from \"./index\";\nimport { AxisTooltipOptions, BarTooltipOptions, BarOptions, StackedBarOptions } from \"./components\";\n\n/**\n * Base chart options common to any chart\n */\nexport interface BaseChartOptions {\n\t/**\n\t * boolean to disable animations (enabled by default)\n\t */\n\tanimations?: boolean;\n\t/**\n\t * boolean to prevent the container from resizing\n\t */\n\tresizable?: boolean;\n\t/**\n\t * Optionally specify a width for the chart\n\t */\n\twidth?: string;\n\t/**\n\t * Optionally specify a height for the chart\n\t */\n\theight?: string;\n\t/**\n\t * tooltip configuration\n\t */\n\ttooltip?: TooltipOptions;\n\t/**\n\t * legend configuration\n\t */\n\tlegend?: LegendOptions;\n\t/**\n\t * Optional function to determine whether is filled based on datasetLabel, label, and/or data\n\t */\n\tgetIsFilled?: (datasetLabel: any, label?: any, data?: any, defaultFilled?: boolean) => boolean;\n\t/**\n\t * Optional function to generate the fill color based on datasetLabel, label, and/or data\n\t */\n\tgetFillColor?: (datasetLabel: any, label?: any, data?: any, defaultFillColor?: string) => string;\n\t/**\n\t * Optional function to generate the stroke color based on datasetLabel, label, and/or data\n\t */\n\tgetStrokeColor?: (datasetLabel: any, label?: any, data?: any, defaultStrokeColor?: string) => string;\n\t/**\n\t * stylesheet options\n\t */\n\tstyle?: {\n\t\t/**\n\t\t * optional prefixing string for css classes (defaults to 'cc')\n\t\t */\n\t\tprefix?: string;\n\t};\n\t/**\n\t * options related to charting data\n\t */\n\tdata?: {\n\t\t/**\n\t\t * identifier for data groups\n\t\t */\n\t\tgroupMapsTo?: string;\n\t};\n\t/**\n\t * options related to color scales\n\t */\n\tcolor?: {\n\t\t/**\n\t\t * e.g. { \"Dataset 1\": \"blue\" }\n\t\t */\n\t\tscale?: object;\n\t};\n}\n\n/**\n * Options common to any chart with an axis\n */\nexport interface AxisChartOptions extends BaseChartOptions {\n\taxes?: AxesOptions;\n\tgrid?: GridOptions;\n\ttooltip?: AxisTooltipOptions;\n}\n\n/**\n * options specific to bar charts\n */\nexport interface BarChartOptions extends AxisChartOptions {\n\tbars?: BarOptions;\n\ttooltip?: BarTooltipOptions;\n}\n\n/**\n * options specific to stacked bar charts\n */\nexport interface StackedBarChartOptions extends BarChartOptions {\n\tbars?: StackedBarOptions;\n}\n\n/**\n * options specific to scatter charts\n */\nexport interface ScatterChartOptions extends AxisChartOptions {\n\t/**\n\t * options for the points\n\t */\n\tpoints?: {\n\t\t/**\n\t\t * sets the radius of the point\n\t\t */\n\t\tradius: number;\n\t\tfillOpacity?: number;\n\t\tfilled?: boolean;\n\t};\n}\n\n/**\n * options specific to bubble charts\n */\nexport interface BubbleChartOptions extends AxisChartOptions {\n\t/**\n\t * options for the individual bubbles\n\t */\n\tbubble?: {\n\t\t/**\n\t\t * the key to lookup in charting data for the bubble radius value\n\t\t */\n\t\tradiusMapsTo?: string;\n\t\t/**\n\t\t * A function that would determine the range of the bubble radius to use\n\t\t * Returns an array with the 1st value being the min and the 2nd value being the max radius\n\t\t */\n\t\tradiusRange?: Function;\n\t\t/**\n\t\t * Opacity of the fills used within each circle\n\t\t */\n\t\tfillOpacity?: number;\n\t};\n}\n\n/**\n * options specific to line charts\n */\nexport interface LineChartOptions extends ScatterChartOptions {\n\t/**\n\t * options for the curve of the line\n\t */\n\tcurve?: string | {\n\t\tname: string;\n\t};\n}\n\n/**\n * options specific to pie charts\n */\nexport interface PieChartOptions extends BaseChartOptions {\n\tpie?: {\n\t\tradiusOffset?: number;\n\t\tinnerRadius?: number;\n\t\tpadAngle?: number;\n\t\thoverArc?: {\n\t\t\touterRadiusOffset?: number;\n\t\t};\n\t\txOffset?: number;\n\t\tyOffset?: number;\n\t\tyOffsetCallout?: number;\n\t\tcallout?: {\n\t\t\tminSliceDegree?: number;\n\t\t\toffsetX?: number,\n\t\t\toffsetY?: number;\n\t\t\thorizontalLineLength?: number;\n\t\t\ttextMargin?: number;\n\t\t},\n\t\tlabels?: {\n\t\t\tformatter?: Function;\n\t\t}\n\t};\n}\n\n\n\n/**\n * options specific to donut charts\n */\nexport interface DonutChartOptions extends PieChartOptions {\n\tdonut?: {\n\t\tcenter?: {\n\t\t\tnumberFontSize?: Function;\n\t\t\ttitleFontSize?: Function;\n\t\t\ttitleYPosition?: Function;\n\t\t\tnumberFormatter?: Function;\n\t\t};\n\t};\n}\n\n/**\n * options specific to radar charts\n */\nexport interface RadarChartOptions extends BaseChartOptions {\n\tradar?: {\n\t\topacity: {\n\t\t\tunselected: number,\n\t\t\tselected: number\n\t\t},\n\t\taxes: {\n\t\t\tangle: string,\n\t\t\tvalue: string\n\t\t}\n\t\txLabelPadding: number,\n\t\tyLabelPadding: number,\n\t\tyTicksNumber: number,\n\t\tminRange: number,\n\t\txAxisRectHeight: number,\n\t\tdotsRadius: number\n\t};\n}\n"]}
@@ -93,3 +93,19 @@ export declare enum CalloutDirections {
93
93
  LEFT = "left",
94
94
  RIGHT = "right"
95
95
  }
96
+ /**
97
+ * enum of all possible attributes used to aling text horizontally
98
+ */
99
+ export declare enum TextAnchor {
100
+ START = "start",
101
+ MIDDLE = "middle",
102
+ END = "end"
103
+ }
104
+ /**
105
+ * enum of all possible attributes used to aling text vertically
106
+ */
107
+ export declare enum DominantBaseline {
108
+ BASELINE = "baseline",
109
+ MIDDLE = "middle",
110
+ HANGING = "hanging"
111
+ }
@@ -104,4 +104,22 @@ export var CalloutDirections;
104
104
  CalloutDirections["LEFT"] = "left";
105
105
  CalloutDirections["RIGHT"] = "right";
106
106
  })(CalloutDirections || (CalloutDirections = {}));
107
+ /**
108
+ * enum of all possible attributes used to aling text horizontally
109
+ */
110
+ export var TextAnchor;
111
+ (function (TextAnchor) {
112
+ TextAnchor["START"] = "start";
113
+ TextAnchor["MIDDLE"] = "middle";
114
+ TextAnchor["END"] = "end";
115
+ })(TextAnchor || (TextAnchor = {}));
116
+ /**
117
+ * enum of all possible attributes used to aling text vertically
118
+ */
119
+ export var DominantBaseline;
120
+ (function (DominantBaseline) {
121
+ DominantBaseline["BASELINE"] = "baseline";
122
+ DominantBaseline["MIDDLE"] = "middle";
123
+ DominantBaseline["HANGING"] = "hanging";
124
+ })(DominantBaseline || (DominantBaseline = {}));
107
125
  //# sourceMappingURL=../../src/interfaces/enums.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"enums.js","sourceRoot":"","sources":["enums.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,UAAU,MAAM,UAAU,CAAC;AACvC,MAAM,CAAC,IAAM,MAAM,GAAG,UAAU,CAAC;AAEjC;;GAEG;AACH,MAAM,CAAN,IAAY,UAKX;AALD,WAAY,UAAU;IACrB,iCAAmB,CAAA;IACnB,2BAAa,CAAA;IACb,yBAAW,CAAA;IACX,yBAAW,CAAA;AACZ,CAAC,EALW,UAAU,KAAV,UAAU,QAKrB;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,aAKX;AALD,WAAY,aAAa;IACxB,8BAAa,CAAA;IACb,gCAAe,CAAA;IACf,4BAAW,CAAA;IACX,kCAAiB,CAAA;AAClB,CAAC,EALW,aAAa,KAAb,aAAa,QAKxB;AAED;;;;;GAKG;AACH,MAAM,CAAN,IAAY,qBAGX;AAHD,WAAY,qBAAqB;IAChC,8CAAqB,CAAA;IACrB,kDAAyB,CAAA;AAC1B,CAAC,EAHW,qBAAqB,KAArB,qBAAqB,QAGhC;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,UAKX;AALD,WAAY,UAAU;IACrB,2BAAa,CAAA;IACb,+BAAiB,CAAA;IACjB,yBAAW,CAAA;IACX,+BAAiB,CAAA;AAClB,CAAC,EALW,UAAU,KAAV,UAAU,QAKrB;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,eAIX;AAJD,WAAY,eAAe;IAC1B,kCAAe,CAAA;IACf,8BAAW,CAAA;IACX,oCAAiB,CAAA;AAClB,CAAC,EAJW,eAAe,KAAf,eAAe,QAI1B;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,YAIX;AAJD,WAAY,YAAY;IACvB,uCAAuB,CAAA;IACvB,qCAAqB,CAAA;IACrB,+BAAe,CAAA;AAChB,CAAC,EAJW,YAAY,KAAZ,YAAY,QAIvB;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,eAKX;AALD,WAAY,eAAe;IAC1B,kCAAe,CAAA;IACf,gCAAa,CAAA;IACb,8BAAW,CAAA;IACX,oCAAiB,CAAA;AAClB,CAAC,EALW,eAAe,KAAf,eAAe,QAK1B;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,kBAGX;AAHD,WAAY,kBAAkB;IAC7B,+CAAyB,CAAA;IACzB,2CAAqB,CAAA;AACtB,CAAC,EAHW,kBAAkB,KAAlB,kBAAkB,QAG7B;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,eAKX;AALD,WAAY,eAAe;IAC1B,8BAAW,CAAA;IACX,oCAAiB,CAAA;IACjB,8CAA2B,CAAA;IAC3B,oDAAiC,CAAA;AAClC,CAAC,EALW,eAAe,KAAf,eAAe,QAK1B;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,YAIX;AAJD,WAAY,YAAY;IACvB,+BAAe,CAAA;IACf,uCAAuB,CAAA;IACvB,mCAAmB,CAAA;AACpB,CAAC,EAJW,YAAY,KAAZ,YAAY,QAIvB;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,iBAGX;AAHD,WAAY,iBAAiB;IAC5B,kCAAa,CAAA;IACb,oCAAe,CAAA;AAChB,CAAC,EAHW,iBAAiB,KAAjB,iBAAiB,QAG5B","sourcesContent":["import * as EventEnums from \"./events\";\nexport const Events = EventEnums;\n\n/**\n * enum of all supported chart themes\n */\nexport enum ChartTheme {\n\tDEFAULT = \"default\",\n\tG100 = \"g100\",\n\tG90 = \"g90\",\n\tG10 = \"g10\"\n}\n\n/**\n * enum of all possible axis positions\n */\nexport enum AxisPositions {\n\tLEFT = \"left\",\n\tRIGHT = \"right\",\n\tTOP = \"top\",\n\tBOTTOM = \"bottom\"\n}\n\n/**\n * enum of all possible cartesian orientations\n * to be used for determining the orientation\n * of graphs being draw over\n * cartesian scales\n */\nexport enum CartesianOrientations {\n\tVERTICAL = \"vertical\",\n\tHORIZONTAL = \"horizontal\"\n}\n\n/**\n * enum of all possible scale types\n */\nexport enum ScaleTypes {\n\tTIME = \"time\",\n\tLINEAR = \"linear\",\n\tLOG = \"log\",\n\tLABELS = \"labels\"\n}\n\n/**\n * enum of supported tooltip position relative to\n */\nexport enum TooltipPosition {\n\tMOUSE = \"mouse\",\n\tTOP = \"top\",\n\tBOTTOM = \"bottom\"\n}\n\n/**\n * enum of tooltip types for custom tooltip event\n */\nexport enum TooltipTypes {\n\tDATAPOINT = \"datapoint\",\n\tGRIDLINE = \"gridline\",\n\tTITLE = \"title\"\n}\n\n/**\n * enum of all possible legend positions\n */\nexport enum LegendPositions {\n\tRIGHT = \"right\",\n\tLEFT = \"left\",\n\tTOP = \"top\",\n\tBOTTOM = \"bottom\"\n}\n\n/**\n * enum of all possible legend orientations\n */\nexport enum LegendOrientations {\n\tHORIZONTAL = \"horizontal\",\n\tVERTICAL = \"vertical\"\n}\n\n/**\n * enum of all possible layout directions\n */\nexport enum LayoutDirection {\n\tROW = \"row\",\n\tCOLUMN = \"column\",\n\tROW_REVERSE = \"row-reverse\",\n\tCOLUMN_REVERSE = \"column-reverse\"\n}\n\n/**\n * enum of all possible layout growth values\n */\nexport enum LayoutGrowth {\n\tFIXED = \"fixed\",\n\tPREFERRED = \"preferred\",\n\tSTRETCH = \"stretch\",\n}\n\n/**\n * enum of all possible callout directions\n */\nexport enum CalloutDirections {\n\tLEFT = \"left\",\n\tRIGHT = \"right\"\n}\n"]}
1
+ {"version":3,"file":"enums.js","sourceRoot":"","sources":["enums.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,UAAU,MAAM,UAAU,CAAC;AACvC,MAAM,CAAC,IAAM,MAAM,GAAG,UAAU,CAAC;AAEjC;;GAEG;AACH,MAAM,CAAN,IAAY,UAKX;AALD,WAAY,UAAU;IACrB,iCAAmB,CAAA;IACnB,2BAAa,CAAA;IACb,yBAAW,CAAA;IACX,yBAAW,CAAA;AACZ,CAAC,EALW,UAAU,KAAV,UAAU,QAKrB;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,aAKX;AALD,WAAY,aAAa;IACxB,8BAAa,CAAA;IACb,gCAAe,CAAA;IACf,4BAAW,CAAA;IACX,kCAAiB,CAAA;AAClB,CAAC,EALW,aAAa,KAAb,aAAa,QAKxB;AAED;;;;;GAKG;AACH,MAAM,CAAN,IAAY,qBAGX;AAHD,WAAY,qBAAqB;IAChC,8CAAqB,CAAA;IACrB,kDAAyB,CAAA;AAC1B,CAAC,EAHW,qBAAqB,KAArB,qBAAqB,QAGhC;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,UAKX;AALD,WAAY,UAAU;IACrB,2BAAa,CAAA;IACb,+BAAiB,CAAA;IACjB,yBAAW,CAAA;IACX,+BAAiB,CAAA;AAClB,CAAC,EALW,UAAU,KAAV,UAAU,QAKrB;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,eAIX;AAJD,WAAY,eAAe;IAC1B,kCAAe,CAAA;IACf,8BAAW,CAAA;IACX,oCAAiB,CAAA;AAClB,CAAC,EAJW,eAAe,KAAf,eAAe,QAI1B;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,YAIX;AAJD,WAAY,YAAY;IACvB,uCAAuB,CAAA;IACvB,qCAAqB,CAAA;IACrB,+BAAe,CAAA;AAChB,CAAC,EAJW,YAAY,KAAZ,YAAY,QAIvB;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,eAKX;AALD,WAAY,eAAe;IAC1B,kCAAe,CAAA;IACf,gCAAa,CAAA;IACb,8BAAW,CAAA;IACX,oCAAiB,CAAA;AAClB,CAAC,EALW,eAAe,KAAf,eAAe,QAK1B;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,kBAGX;AAHD,WAAY,kBAAkB;IAC7B,+CAAyB,CAAA;IACzB,2CAAqB,CAAA;AACtB,CAAC,EAHW,kBAAkB,KAAlB,kBAAkB,QAG7B;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,eAKX;AALD,WAAY,eAAe;IAC1B,8BAAW,CAAA;IACX,oCAAiB,CAAA;IACjB,8CAA2B,CAAA;IAC3B,oDAAiC,CAAA;AAClC,CAAC,EALW,eAAe,KAAf,eAAe,QAK1B;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,YAIX;AAJD,WAAY,YAAY;IACvB,+BAAe,CAAA;IACf,uCAAuB,CAAA;IACvB,mCAAmB,CAAA;AACpB,CAAC,EAJW,YAAY,KAAZ,YAAY,QAIvB;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,iBAGX;AAHD,WAAY,iBAAiB;IAC5B,kCAAa,CAAA;IACb,oCAAe,CAAA;AAChB,CAAC,EAHW,iBAAiB,KAAjB,iBAAiB,QAG5B;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,UAIX;AAJD,WAAY,UAAU;IACrB,6BAAe,CAAA;IACf,+BAAiB,CAAA;IACjB,yBAAW,CAAA;AACZ,CAAC,EAJW,UAAU,KAAV,UAAU,QAIrB;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,gBAIX;AAJD,WAAY,gBAAgB;IAC3B,yCAAqB,CAAA;IACrB,qCAAiB,CAAA;IACjB,uCAAmB,CAAA;AACpB,CAAC,EAJW,gBAAgB,KAAhB,gBAAgB,QAI3B","sourcesContent":["import * as EventEnums from \"./events\";\nexport const Events = EventEnums;\n\n/**\n * enum of all supported chart themes\n */\nexport enum ChartTheme {\n\tDEFAULT = \"default\",\n\tG100 = \"g100\",\n\tG90 = \"g90\",\n\tG10 = \"g10\"\n}\n\n/**\n * enum of all possible axis positions\n */\nexport enum AxisPositions {\n\tLEFT = \"left\",\n\tRIGHT = \"right\",\n\tTOP = \"top\",\n\tBOTTOM = \"bottom\"\n}\n\n/**\n * enum of all possible cartesian orientations\n * to be used for determining the orientation\n * of graphs being draw over\n * cartesian scales\n */\nexport enum CartesianOrientations {\n\tVERTICAL = \"vertical\",\n\tHORIZONTAL = \"horizontal\"\n}\n\n/**\n * enum of all possible scale types\n */\nexport enum ScaleTypes {\n\tTIME = \"time\",\n\tLINEAR = \"linear\",\n\tLOG = \"log\",\n\tLABELS = \"labels\"\n}\n\n/**\n * enum of supported tooltip position relative to\n */\nexport enum TooltipPosition {\n\tMOUSE = \"mouse\",\n\tTOP = \"top\",\n\tBOTTOM = \"bottom\"\n}\n\n/**\n * enum of tooltip types for custom tooltip event\n */\nexport enum TooltipTypes {\n\tDATAPOINT = \"datapoint\",\n\tGRIDLINE = \"gridline\",\n\tTITLE = \"title\"\n}\n\n/**\n * enum of all possible legend positions\n */\nexport enum LegendPositions {\n\tRIGHT = \"right\",\n\tLEFT = \"left\",\n\tTOP = \"top\",\n\tBOTTOM = \"bottom\"\n}\n\n/**\n * enum of all possible legend orientations\n */\nexport enum LegendOrientations {\n\tHORIZONTAL = \"horizontal\",\n\tVERTICAL = \"vertical\"\n}\n\n/**\n * enum of all possible layout directions\n */\nexport enum LayoutDirection {\n\tROW = \"row\",\n\tCOLUMN = \"column\",\n\tROW_REVERSE = \"row-reverse\",\n\tCOLUMN_REVERSE = \"column-reverse\"\n}\n\n/**\n * enum of all possible layout growth values\n */\nexport enum LayoutGrowth {\n\tFIXED = \"fixed\",\n\tPREFERRED = \"preferred\",\n\tSTRETCH = \"stretch\",\n}\n\n/**\n * enum of all possible callout directions\n */\nexport enum CalloutDirections {\n\tLEFT = \"left\",\n\tRIGHT = \"right\"\n}\n\n/**\n * enum of all possible attributes used to aling text horizontally\n */\nexport enum TextAnchor {\n\tSTART = \"start\",\n\tMIDDLE = \"middle\",\n\tEND = \"end\"\n}\n\n/**\n * enum of all possible attributes used to aling text vertically\n */\nexport enum DominantBaseline {\n\tBASELINE = \"baseline\",\n\tMIDDLE = \"middle\",\n\tHANGING = \"hanging\"\n}\n"]}
@@ -56,6 +56,15 @@ export declare enum Line {
56
56
  POINT_CLICK = "scatter-click",
57
57
  POINT_MOUSEOUT = "scatter-mouseout"
58
58
  }
59
+ /**
60
+ * enum of all radar graph events
61
+ */
62
+ export declare enum Radar {
63
+ X_AXIS_MOUSEOVER = "radar-x-axis-mouseover",
64
+ X_AXIS_MOUSEMOVE = "radar-x-axis-mousemove",
65
+ X_AXIS_CLICK = "radar-x-axis-click",
66
+ X_AXIS_MOUSEOUT = "radar-x-axis-mouseout"
67
+ }
59
68
  /**
60
69
  * enum of all tooltip events
61
70
  */
@@ -63,6 +63,16 @@ export var Line;
63
63
  Line["POINT_CLICK"] = "scatter-click";
64
64
  Line["POINT_MOUSEOUT"] = "scatter-mouseout";
65
65
  })(Line || (Line = {}));
66
+ /**
67
+ * enum of all radar graph events
68
+ */
69
+ export var Radar;
70
+ (function (Radar) {
71
+ Radar["X_AXIS_MOUSEOVER"] = "radar-x-axis-mouseover";
72
+ Radar["X_AXIS_MOUSEMOVE"] = "radar-x-axis-mousemove";
73
+ Radar["X_AXIS_CLICK"] = "radar-x-axis-click";
74
+ Radar["X_AXIS_MOUSEOUT"] = "radar-x-axis-mouseout";
75
+ })(Radar || (Radar = {}));
66
76
  /**
67
77
  * enum of all tooltip events
68
78
  */
@@ -1 +1 @@
1
- {"version":3,"file":"events.js","sourceRoot":"","sources":["events.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,CAAN,IAAY,KAGX;AAHD,WAAY,KAAK;IAChB,4CAAmC,CAAA;IACnC,gCAAuB,CAAA;AACxB,CAAC,EAHW,KAAK,KAAL,KAAK,QAGhB;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,KAEX;AAFD,WAAY,KAAK;IAChB,gCAAuB,CAAA;AACxB,CAAC,EAFW,KAAK,KAAL,KAAK,QAEhB;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,IAKX;AALD,WAAY,IAAI;IACf,gDAAwC,CAAA;IACxC,gDAAwC,CAAA;IACxC,wCAAgC,CAAA;IAChC,8CAAsC,CAAA;AACvC,CAAC,EALW,IAAI,KAAJ,IAAI,QAKf;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,GAKX;AALD,WAAY,GAAG;IACd,8CAAuC,CAAA;IACvC,8CAAuC,CAAA;IACvC,sCAA+B,CAAA;IAC/B,4CAAqC,CAAA;AACtC,CAAC,EALW,GAAG,KAAH,GAAG,QAKd;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,GAKX;AALD,WAAY,GAAG;IACd,sCAA+B,CAAA;IAC/B,sCAA+B,CAAA;IAC/B,8BAAuB,CAAA;IACvB,oCAA6B,CAAA;AAC9B,CAAC,EALW,GAAG,KAAH,GAAG,QAKd;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,OAKX;AALD,WAAY,OAAO;IAClB,kDAAuC,CAAA;IACvC,kDAAuC,CAAA;IACvC,0CAA+B,CAAA;IAC/B,gDAAqC,CAAA;AACtC,CAAC,EALW,OAAO,KAAP,OAAO,QAKlB;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,IAKX;AALD,WAAY,IAAI;IACf,6CAAqC,CAAA;IACrC,6CAAqC,CAAA;IACrC,qCAA6B,CAAA;IAC7B,2CAAmC,CAAA;AACpC,CAAC,EALW,IAAI,KAAJ,IAAI,QAKf;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,OAGX;AAHD,WAAY,OAAO;IAClB,gCAAqB,CAAA;IACrB,gCAAqB,CAAA;AACtB,CAAC,EAHW,OAAO,KAAP,OAAO,QAGlB;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,MAKX;AALD,WAAY,MAAM;IACjB,4CAAkC,CAAA;IAClC,4CAAkC,CAAA;IAClC,kDAAwC,CAAA;IACxC,8CAAoC,CAAA;AACrC,CAAC,EALW,MAAM,KAAN,MAAM,QAKjB","sourcesContent":["/**\n * enum of all events related to the chart on the DOM\n */\nexport enum Chart {\n\tRENDER_FINISHED = \"render-finished\",\n\tRESIZE = \"chart-resize\"\n}\n\n/**\n * enum of all events related to the chart model\n */\nexport enum Model {\n\tUPDATE = \"model-update\"\n}\n\n/**\n * enum of all axis-related events\n */\nexport enum Axis {\n\tLABEL_MOUSEOVER = \"axis-label-mouseover\",\n\tLABEL_MOUSEMOVE = \"axis-label-mousemove\",\n\tLABEL_CLICK = \"axis-label-click\",\n\tLABEL_MOUSEOUT = \"axis-label-mouseout\"\n}\n\n/**\n * enum of all pie graph events\n */\nexport enum Pie {\n\tSLICE_MOUSEOVER = \"pie-slice-mouseover\",\n\tSLICE_MOUSEMOVE = \"pie-slice-mousemove\",\n\tSLICE_CLICK = \"pie-slice-click\",\n\tSLICE_MOUSEOUT = \"pie-slice-mouseout\"\n}\n\n/**\n * enum of all bar graph events\n */\nexport enum Bar {\n\tBAR_MOUSEOVER = \"bar-mouseover\",\n\tBAR_MOUSEMOVE = \"bar-mousemove\",\n\tBAR_CLICK = \"bar-click\",\n\tBAR_MOUSEOUT = \"bar-mouseout\"\n}\n\n/**\n * enum of all scatter graph events\n */\nexport enum Scatter {\n\tSCATTER_MOUSEOVER = \"scatter-mouseover\",\n\tSCATTER_MOUSEMOVE = \"scatter-mousemove\",\n\tSCATTER_CLICK = \"scatter-click\",\n\tSCATTER_MOUSEOUT = \"scatter-mouseout\"\n}\n\n/**\n * enum of all line graph events\n */\nexport enum Line {\n\tPOINT_MOUSEOVER = \"scatter-mouseover\",\n\tPOINT_MOUSEMOVE = \"scatter-mousemove\",\n\tPOINT_CLICK = \"scatter-click\",\n\tPOINT_MOUSEOUT = \"scatter-mouseout\"\n}\n\n/**\n * enum of all tooltip events\n */\nexport enum Tooltip {\n\tSHOW = \"show-tooltip\",\n\tHIDE = \"hide-tooltip\"\n}\n\n/**\n * enum of all legend related events\n */\nexport enum Legend {\n\tITEM_HOVER = \"legend-item-onhover\",\n\tITEM_CLICK = \"legend-item-onclick\",\n\tITEM_MOUSEOUT = \"legend-item-onmouseout\",\n\tITEMS_UPDATE = \"legend-items-update\"\n}\n"]}
1
+ {"version":3,"file":"events.js","sourceRoot":"","sources":["events.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,CAAN,IAAY,KAGX;AAHD,WAAY,KAAK;IAChB,4CAAmC,CAAA;IACnC,gCAAuB,CAAA;AACxB,CAAC,EAHW,KAAK,KAAL,KAAK,QAGhB;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,KAEX;AAFD,WAAY,KAAK;IAChB,gCAAuB,CAAA;AACxB,CAAC,EAFW,KAAK,KAAL,KAAK,QAEhB;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,IAKX;AALD,WAAY,IAAI;IACf,gDAAwC,CAAA;IACxC,gDAAwC,CAAA;IACxC,wCAAgC,CAAA;IAChC,8CAAsC,CAAA;AACvC,CAAC,EALW,IAAI,KAAJ,IAAI,QAKf;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,GAKX;AALD,WAAY,GAAG;IACd,8CAAuC,CAAA;IACvC,8CAAuC,CAAA;IACvC,sCAA+B,CAAA;IAC/B,4CAAqC,CAAA;AACtC,CAAC,EALW,GAAG,KAAH,GAAG,QAKd;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,GAKX;AALD,WAAY,GAAG;IACd,sCAA+B,CAAA;IAC/B,sCAA+B,CAAA;IAC/B,8BAAuB,CAAA;IACvB,oCAA6B,CAAA;AAC9B,CAAC,EALW,GAAG,KAAH,GAAG,QAKd;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,OAKX;AALD,WAAY,OAAO;IAClB,kDAAuC,CAAA;IACvC,kDAAuC,CAAA;IACvC,0CAA+B,CAAA;IAC/B,gDAAqC,CAAA;AACtC,CAAC,EALW,OAAO,KAAP,OAAO,QAKlB;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,IAKX;AALD,WAAY,IAAI;IACf,6CAAqC,CAAA;IACrC,6CAAqC,CAAA;IACrC,qCAA6B,CAAA;IAC7B,2CAAmC,CAAA;AACpC,CAAC,EALW,IAAI,KAAJ,IAAI,QAKf;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,KAKX;AALD,WAAY,KAAK;IAChB,oDAA2C,CAAA;IAC3C,oDAA2C,CAAA;IAC3C,4CAAmC,CAAA;IACnC,kDAAyC,CAAA;AAC1C,CAAC,EALW,KAAK,KAAL,KAAK,QAKhB;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,OAGX;AAHD,WAAY,OAAO;IAClB,gCAAqB,CAAA;IACrB,gCAAqB,CAAA;AACtB,CAAC,EAHW,OAAO,KAAP,OAAO,QAGlB;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,MAKX;AALD,WAAY,MAAM;IACjB,4CAAkC,CAAA;IAClC,4CAAkC,CAAA;IAClC,kDAAwC,CAAA;IACxC,8CAAoC,CAAA;AACrC,CAAC,EALW,MAAM,KAAN,MAAM,QAKjB","sourcesContent":["/**\n * enum of all events related to the chart on the DOM\n */\nexport enum Chart {\n\tRENDER_FINISHED = \"render-finished\",\n\tRESIZE = \"chart-resize\"\n}\n\n/**\n * enum of all events related to the chart model\n */\nexport enum Model {\n\tUPDATE = \"model-update\"\n}\n\n/**\n * enum of all axis-related events\n */\nexport enum Axis {\n\tLABEL_MOUSEOVER = \"axis-label-mouseover\",\n\tLABEL_MOUSEMOVE = \"axis-label-mousemove\",\n\tLABEL_CLICK = \"axis-label-click\",\n\tLABEL_MOUSEOUT = \"axis-label-mouseout\"\n}\n\n/**\n * enum of all pie graph events\n */\nexport enum Pie {\n\tSLICE_MOUSEOVER = \"pie-slice-mouseover\",\n\tSLICE_MOUSEMOVE = \"pie-slice-mousemove\",\n\tSLICE_CLICK = \"pie-slice-click\",\n\tSLICE_MOUSEOUT = \"pie-slice-mouseout\"\n}\n\n/**\n * enum of all bar graph events\n */\nexport enum Bar {\n\tBAR_MOUSEOVER = \"bar-mouseover\",\n\tBAR_MOUSEMOVE = \"bar-mousemove\",\n\tBAR_CLICK = \"bar-click\",\n\tBAR_MOUSEOUT = \"bar-mouseout\"\n}\n\n/**\n * enum of all scatter graph events\n */\nexport enum Scatter {\n\tSCATTER_MOUSEOVER = \"scatter-mouseover\",\n\tSCATTER_MOUSEMOVE = \"scatter-mousemove\",\n\tSCATTER_CLICK = \"scatter-click\",\n\tSCATTER_MOUSEOUT = \"scatter-mouseout\"\n}\n\n/**\n * enum of all line graph events\n */\nexport enum Line {\n\tPOINT_MOUSEOVER = \"scatter-mouseover\",\n\tPOINT_MOUSEMOVE = \"scatter-mousemove\",\n\tPOINT_CLICK = \"scatter-click\",\n\tPOINT_MOUSEOUT = \"scatter-mouseout\"\n}\n\n/**\n * enum of all radar graph events\n */\nexport enum Radar {\n\tX_AXIS_MOUSEOVER = \"radar-x-axis-mouseover\",\n\tX_AXIS_MOUSEMOVE = \"radar-x-axis-mousemove\",\n\tX_AXIS_CLICK = \"radar-x-axis-click\",\n\tX_AXIS_MOUSEOUT = \"radar-x-axis-mouseout\"\n}\n\n/**\n * enum of all tooltip events\n */\nexport enum Tooltip {\n\tSHOW = \"show-tooltip\",\n\tHIDE = \"hide-tooltip\"\n}\n\n/**\n * enum of all legend related events\n */\nexport enum Legend {\n\tITEM_HOVER = \"legend-item-onhover\",\n\tITEM_CLICK = \"legend-item-onclick\",\n\tITEM_MOUSEOUT = \"legend-item-onmouseout\",\n\tITEMS_UPDATE = \"legend-items-update\"\n}\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carbon/charts",
3
- "version": "0.30.17",
3
+ "version": "0.30.21",
4
4
  "description": "Carbon charting components",
5
5
  "main": "./bundle.js",
6
6
  "module": "./index.js",
@@ -0,0 +1,16 @@
1
+ import { TextAnchor, DominantBaseline } from "../interfaces/enums";
2
+ export interface Point {
3
+ x: number;
4
+ y: number;
5
+ }
6
+ export declare type Angle = number;
7
+ interface LabelAlignment {
8
+ textAnchor: TextAnchor;
9
+ dominantBaseline: DominantBaseline;
10
+ }
11
+ export declare function radialLabelPlacement(angleRadians: Angle): LabelAlignment;
12
+ export declare function radToDeg(rad: Angle): Angle;
13
+ export declare function degToRad(deg: Angle): Angle;
14
+ export declare function polarToCartesianCoords(a: Angle, r: number, t?: Point): Point;
15
+ export declare function distanceBetweenPointOnCircAndVerticalDiameter(a: Angle, r: number): number;
16
+ export {};
@@ -0,0 +1,55 @@
1
+ import { TextAnchor, DominantBaseline } from "../interfaces/enums";
2
+ export function radialLabelPlacement(angleRadians) {
3
+ var angle = mod(radToDeg(angleRadians), 360);
4
+ if (isInRange(angle, [0, 10]) || isInRange(angle, [350, 0])) {
5
+ return { textAnchor: TextAnchor.START, dominantBaseline: DominantBaseline.MIDDLE };
6
+ }
7
+ else if (isInRange(angle, [10, 80])) {
8
+ return { textAnchor: TextAnchor.START, dominantBaseline: DominantBaseline.HANGING };
9
+ }
10
+ else if (isInRange(angle, [80, 100])) {
11
+ return { textAnchor: TextAnchor.MIDDLE, dominantBaseline: DominantBaseline.HANGING };
12
+ }
13
+ else if (isInRange(angle, [100, 170])) {
14
+ return { textAnchor: TextAnchor.END, dominantBaseline: DominantBaseline.HANGING };
15
+ }
16
+ else if (isInRange(angle, [170, 190])) {
17
+ return { textAnchor: TextAnchor.END, dominantBaseline: DominantBaseline.MIDDLE };
18
+ }
19
+ else if (isInRange(angle, [190, 260])) {
20
+ return { textAnchor: TextAnchor.END, dominantBaseline: DominantBaseline.BASELINE };
21
+ }
22
+ else if (isInRange(angle, [260, 280])) {
23
+ return { textAnchor: TextAnchor.MIDDLE, dominantBaseline: DominantBaseline.BASELINE };
24
+ }
25
+ else { // 280 - 350
26
+ return { textAnchor: TextAnchor.START, dominantBaseline: DominantBaseline.BASELINE };
27
+ }
28
+ }
29
+ function mod(n, m) {
30
+ return ((n % m) + m) % m;
31
+ }
32
+ function isInRange(x, _a) {
33
+ var min = _a[0], max = _a[1];
34
+ return x >= min && x <= max;
35
+ }
36
+ export function radToDeg(rad) {
37
+ return rad * (180 / Math.PI);
38
+ }
39
+ export function degToRad(deg) {
40
+ return deg * (Math.PI / 180);
41
+ }
42
+ export function polarToCartesianCoords(a, r, t) {
43
+ if (t === void 0) { t = { x: 0, y: 0 }; }
44
+ var x = r * Math.cos(a) + t.x;
45
+ var y = r * Math.sin(a) + t.y;
46
+ return { x: x, y: y };
47
+ }
48
+ // Return the distance between a point (described with polar coordinates)
49
+ // on a circumference and the vertical diameter.
50
+ // If the point is on the left if the diameter, its distance is positive,
51
+ // if it is on the right of the diameter, its distance is negative.
52
+ export function distanceBetweenPointOnCircAndVerticalDiameter(a, r) {
53
+ return r * Math.sin(a - Math.PI / 2);
54
+ }
55
+ //# sourceMappingURL=../../src/services/angle-utils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"angle-utils.js","sourceRoot":"","sources":["angle-utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAcnE,MAAM,UAAU,oBAAoB,CAAC,YAAmB;IACvD,IAAM,KAAK,GAAG,GAAG,CAAC,QAAQ,CAAC,YAAY,CAAC,EAAE,GAAG,CAAC,CAAC;IAE/C,IAAI,SAAS,CAAC,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,IAAI,SAAS,CAAC,KAAK,EAAE,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,EAAE;QAC5D,OAAO,EAAE,UAAU,EAAE,UAAU,CAAC,KAAK,EAAE,gBAAgB,EAAE,gBAAgB,CAAC,MAAM,EAAE,CAAC;KACnF;SAAM,IAAI,SAAS,CAAC,KAAK,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE;QACtC,OAAO,EAAE,UAAU,EAAE,UAAU,CAAC,KAAK,EAAE,gBAAgB,EAAE,gBAAgB,CAAC,OAAO,EAAE,CAAC;KACpF;SAAM,IAAI,SAAS,CAAC,KAAK,EAAE,CAAC,EAAE,EAAE,GAAG,CAAC,CAAC,EAAE;QACvC,OAAO,EAAE,UAAU,EAAE,UAAU,CAAC,MAAM,EAAE,gBAAgB,EAAE,gBAAgB,CAAC,OAAO,EAAE,CAAC;KACrF;SAAM,IAAI,SAAS,CAAC,KAAK,EAAE,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,EAAE;QACxC,OAAO,EAAE,UAAU,EAAE,UAAU,CAAC,GAAG,EAAE,gBAAgB,EAAE,gBAAgB,CAAC,OAAO,EAAE,CAAC;KAClF;SAAM,IAAI,SAAS,CAAC,KAAK,EAAE,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,EAAE;QACxC,OAAO,EAAE,UAAU,EAAE,UAAU,CAAC,GAAG,EAAE,gBAAgB,EAAE,gBAAgB,CAAC,MAAM,EAAE,CAAC;KACjF;SAAM,IAAI,SAAS,CAAC,KAAK,EAAE,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,EAAE;QACxC,OAAO,EAAE,UAAU,EAAE,UAAU,CAAC,GAAG,EAAE,gBAAgB,EAAE,gBAAgB,CAAC,QAAQ,EAAE,CAAC;KACnF;SAAM,IAAI,SAAS,CAAC,KAAK,EAAE,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,EAAE;QACxC,OAAO,EAAE,UAAU,EAAE,UAAU,CAAC,MAAM,EAAE,gBAAgB,EAAE,gBAAgB,CAAC,QAAQ,EAAE,CAAC;KACtF;SAAM,EAAE,YAAY;QACpB,OAAO,EAAE,UAAU,EAAE,UAAU,CAAC,KAAK,EAAE,gBAAgB,EAAE,gBAAgB,CAAC,QAAQ,EAAE,CAAC;KACrF;AACF,CAAC;AAED,SAAS,GAAG,CAAC,CAAS,EAAE,CAAS;IAChC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;AAC1B,CAAC;AAED,SAAS,SAAS,CAAC,CAAS,EAAE,EAA4B;QAA3B,WAAG,EAAE,WAAG;IACtC,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,GAAG,CAAC;AAC7B,CAAC;AAED,MAAM,UAAU,QAAQ,CAAC,GAAU;IAClC,OAAO,GAAG,GAAG,CAAC,GAAG,GAAG,IAAI,CAAC,EAAE,CAAC,CAAC;AAC9B,CAAC;AAED,MAAM,UAAU,QAAQ,CAAC,GAAU;IAClC,OAAO,GAAG,GAAG,CAAC,IAAI,CAAC,EAAE,GAAG,GAAG,CAAC,CAAC;AAC9B,CAAC;AAED,MAAM,UAAU,sBAAsB,CAAC,CAAQ,EAAE,CAAS,EAAE,CAAyB;IAAzB,kBAAA,EAAA,MAAa,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE;IACpF,IAAM,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;IAChC,IAAM,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;IAChC,OAAO,EAAE,CAAC,GAAA,EAAE,CAAC,GAAA,EAAE,CAAC;AACjB,CAAC;AAED,yEAAyE;AACzE,gDAAgD;AAChD,yEAAyE;AACzE,mEAAmE;AACnE,MAAM,UAAU,6CAA6C,CAAC,CAAQ,EAAE,CAAS;IAChF,OAAO,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC;AACtC,CAAC","sourcesContent":["import { TextAnchor, DominantBaseline } from \"../interfaces/enums\";\n\nexport interface Point {\n\tx: number;\n\ty: number;\n}\n\nexport type Angle = number;\n\ninterface LabelAlignment {\n\ttextAnchor: TextAnchor;\n\tdominantBaseline: DominantBaseline;\n}\n\nexport function radialLabelPlacement(angleRadians: Angle): LabelAlignment {\n\tconst angle = mod(radToDeg(angleRadians), 360);\n\n\tif (isInRange(angle, [0, 10]) || isInRange(angle, [350, 0])) {\n\t\treturn { textAnchor: TextAnchor.START, dominantBaseline: DominantBaseline.MIDDLE };\n\t} else if (isInRange(angle, [10, 80])) {\n\t\treturn { textAnchor: TextAnchor.START, dominantBaseline: DominantBaseline.HANGING };\n\t} else if (isInRange(angle, [80, 100])) {\n\t\treturn { textAnchor: TextAnchor.MIDDLE, dominantBaseline: DominantBaseline.HANGING };\n\t} else if (isInRange(angle, [100, 170])) {\n\t\treturn { textAnchor: TextAnchor.END, dominantBaseline: DominantBaseline.HANGING };\n\t} else if (isInRange(angle, [170, 190])) {\n\t\treturn { textAnchor: TextAnchor.END, dominantBaseline: DominantBaseline.MIDDLE };\n\t} else if (isInRange(angle, [190, 260])) {\n\t\treturn { textAnchor: TextAnchor.END, dominantBaseline: DominantBaseline.BASELINE };\n\t} else if (isInRange(angle, [260, 280])) {\n\t\treturn { textAnchor: TextAnchor.MIDDLE, dominantBaseline: DominantBaseline.BASELINE };\n\t} else { // 280 - 350\n\t\treturn { textAnchor: TextAnchor.START, dominantBaseline: DominantBaseline.BASELINE };\n\t}\n}\n\nfunction mod(n: number, m: number) {\n\treturn ((n % m) + m) % m;\n}\n\nfunction isInRange(x: number, [min, max]: [number, number]) {\n\treturn x >= min && x <= max;\n}\n\nexport function radToDeg(rad: Angle): Angle {\n\treturn rad * (180 / Math.PI);\n}\n\nexport function degToRad(deg: Angle): Angle {\n\treturn deg * (Math.PI / 180);\n}\n\nexport function polarToCartesianCoords(a: Angle, r: number, t: Point = { x: 0, y: 0 }): Point {\n\tconst x = r * Math.cos(a) + t.x;\n\tconst y = r * Math.sin(a) + t.y;\n\treturn { x, y };\n}\n\n// Return the distance between a point (described with polar coordinates)\n// on a circumference and the vertical diameter.\n// If the point is on the left if the diameter, its distance is positive,\n// if it is on the right of the diameter, its distance is negative.\nexport function distanceBetweenPointOnCircAndVerticalDiameter(a: Angle, r: number) {\n\treturn r * Math.sin(a - Math.PI / 2);\n}\n"]}
@@ -0,0 +1,21 @@
1
+ .#{$prefix}--#{$charts-prefix}--ruler {
2
+ line.ruler-line {
3
+ @if $ui-background == map-get($carbon--theme--g90, 'ui-background') {
4
+ stroke: $carbon--white-0;
5
+ } @else if $ui-background == map-get($carbon--theme--g100, 'ui-background') {
6
+ stroke: $carbon--white-0;
7
+ } @else {
8
+ stroke: $carbon--black-100;
9
+ }
10
+
11
+ stroke-width: 1px;
12
+ stroke-dasharray: 2;
13
+ pointer-events: none;
14
+ }
15
+
16
+ text.axis-tooltip-text {
17
+ fill: $carbon--white-0;
18
+ dominant-baseline: middle;
19
+ text-anchor: middle;
20
+ }
21
+ }
@@ -1,6 +1,7 @@
1
1
  @import "./axis";
2
2
  @import "./callouts";
3
3
  @import "./grid";
4
+ @import "./ruler";
4
5
  @import "./zero-line";
5
6
  @import "./layout";
6
7
  @import "./legend";
@@ -0,0 +1,22 @@
1
+
2
+ .#{$prefix}--#{$charts-prefix}--radar {
3
+ .blobs path {
4
+ stroke-width: 1.5px;
5
+ }
6
+
7
+ .y-axes path,
8
+ .x-axes line {
9
+ stroke-width: 1px;
10
+ stroke: $ui-03;
11
+ }
12
+
13
+ .x-axes line.hovered {
14
+ @if $ui-background == map-get($carbon--theme--g90, "ui-background") {
15
+ stroke: $carbon--white-0;
16
+ } @else if $ui-background == map-get($carbon--theme--g100, "ui-background") {
17
+ stroke: $carbon--white-0;
18
+ } @else {
19
+ stroke: $carbon--black-100;
20
+ }
21
+ }
22
+ }
@@ -1,3 +1,4 @@
1
1
  @import "./bubble";
2
2
  @import "./line";
3
3
  @import "./scatter";
4
+ @import "./radar";
package/styles-g10.css CHANGED
@@ -28,6 +28,18 @@
28
28
  stroke: #0062ff;
29
29
  }
30
30
 
31
+ .bx--cc--ruler line.ruler-line {
32
+ stroke: #000000;
33
+ stroke-width: 1px;
34
+ stroke-dasharray: 2;
35
+ pointer-events: none;
36
+ }
37
+ .bx--cc--ruler text.axis-tooltip-text {
38
+ fill: #ffffff;
39
+ dominant-baseline: middle;
40
+ text-anchor: middle;
41
+ }
42
+
31
43
  .bx--cc--zero-line line.domain {
32
44
  stroke: #8c8c8c;
33
45
  }
@@ -186,6 +198,18 @@ g.bx--cc--scatter g.lines path.line {
186
198
  mix-blend-mode: multiply;
187
199
  }
188
200
 
201
+ .bx--cc--radar .blobs path {
202
+ stroke-width: 1.5px;
203
+ }
204
+ .bx--cc--radar .y-axes path,
205
+ .bx--cc--radar .x-axes line {
206
+ stroke-width: 1px;
207
+ stroke: #dcdcdc;
208
+ }
209
+ .bx--cc--radar .x-axes line.hovered {
210
+ stroke: #000000;
211
+ }
212
+
189
213
  svg.bx--cc--chart-svg {
190
214
  font-family: 'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif;
191
215
  }
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["styles/components/_axis.scss","styles/vendor/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/themes/_mixins.scss","styles/components/_callouts.scss","styles/components/_grid.scss","styles/components/_zero-line.scss","styles/components/_layout.scss","styles/components/_legend.scss","styles/vendor/@carbon/colors/scss/mixins.scss","styles/components/_title.scss","styles/components/_tooltip.scss","styles/vendor/@carbon/motion/scss/motion.scss","styles/graphs/_bubble.scss","styles/graphs/_line.scss","styles/graphs/_scatter.scss","styles/_type.scss","styles/_chart-holder.scss","styles/styles.scss"],"names":[],"mappings":"AAKC;EACC,MCqCU;EDpCV;;AAGD;EACC;;AAGD;EACC,QCyBQ;;ACxCV;EACC,QD0CW;;;AE1CX;EAME,MF6Be;EE3BhB,QF8BQ;;AEzBR;AAAA;EACC;EACA;EACA,QFsBO;;AEnBR;AAAA;EACC;EACA,QF0CO;;;AGhEV;EACC,QHuCS;;;AIxCV;EACC;;;ACDD;EACC;;AAGC;EACC;EACA;;AAEA;EACC,QLkCQ;EKjCR,ML0Bc;;AKvBf;EACC;;AAIF;EACC;EACA,QC2QiB;ED1QjB;;AAGD;EACC,MLWe;EKVf,QLUe;;AKPhB;EACC;EACA,MLYS;;AKRX;EACC;;;AElCF;EACC,MPuCW;EOtCX;EACA;EACA;;;ACDD;EACC,kBRgCS;EQ/BT;EACA;EC4CC;ED1CD;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;ECiCA;;AD7BD;EACC,ORkBU;;AQhBV;EACC;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;;AAGD;EACC;;AAKH;EACC;;AACA;EACC;;AAIF;EACC;EACA;;AAEA;EACC;EACA;;AAEA;EAME;;AAOL;EACC;EACA;EACA;EACA;EACA;;AACA;EACC;;;AEhGF;EACC;EACA;ED+CA;;AC3CD;EACC,MV2BQ;;AUxBT;EACC;;;ACdF;EACC;EACA;EACA;;;ACAA;EACC;EACA;EH+CA;;AG3CD;EACC,MZ2BQ;EY1BR;;AAGD;EACC;;;ACXF;EACC;;AAEA;EACC;EACA;EACA,MbiCU;;;Ac3CZ;EACC;EACA;EACA;EACA;EACA,kBd+BiB;;;AejBlB;EACC","file":"styles-g10.css"}
1
+ {"version":3,"sourceRoot":"","sources":["styles/components/_axis.scss","styles/vendor/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/themes/_mixins.scss","styles/components/_callouts.scss","styles/components/_grid.scss","styles/components/_ruler.scss","styles/vendor/@carbon/colors/scss/mixins.scss","styles/components/_zero-line.scss","styles/components/_layout.scss","styles/components/_legend.scss","styles/components/_title.scss","styles/components/_tooltip.scss","styles/vendor/@carbon/motion/scss/motion.scss","styles/graphs/_bubble.scss","styles/graphs/_line.scss","styles/graphs/_scatter.scss","styles/graphs/_radar.scss","styles/_type.scss","styles/_chart-holder.scss","styles/styles.scss"],"names":[],"mappings":"AAKC;EACC,MCqCU;EDpCV;;AAGD;EACC;;AAGD;EACC,QCyBQ;;ACxCV;EACC,QD0CW;;;AE1CX;EAME,MF6Be;EE3BhB,QF8BQ;;AEzBR;AAAA;EACC;EACA;EACA,QFsBO;;AEnBR;AAAA;EACC;EACA,QF0CO;;;AG/DT;EAME,QCkRmB;ED/QpB;EACA;EACA;;AAGD;EACC,MC+WkB;ED9WlB;EACA;;;AElBF;EACC,QLuCS;;;AMxCV;EACC;;;ACDD;EACC;;AAGC;EACC;EACA;;AAEA;EACC,QPkCQ;EOjCR,MP0Bc;;AOvBf;EACC;;AAIF;EACC;EACA,QH2QiB;EG1QjB;;AAGD;EACC,MPWe;EOVf,QPUe;;AOPhB;EACC;EACA,MPYS;;AORX;EACC;;;AClCF;EACC,MRuCW;EQtCX;EACA;EACA;;;ACDD;EACC,kBTgCS;ES/BT;EACA;EC4CC;ED1CD;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;ECiCA;;AD7BD;EACC,OTkBU;;AShBV;EACC;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;;AAGD;EACC;;AAKH;EACC;;AACA;EACC;;AAIF;EACC;EACA;;AAEA;EACC;EACA;;AAEA;EAME;;AAOL;EACC;EACA;EACA;EACA;EACA;;AACA;EACC;;;AEhGF;EACC;EACA;ED+CA;;AC3CD;EACC,MX2BQ;;AWxBT;EACC;;;ACdF;EACC;EACA;EACA;;;ACAA;EACC;EACA;EH+CA;;AG3CD;EACC,Mb2BQ;Ea1BR;;AAGD;EACC;;;ACbD;EACC;;AAGD;AAAA;EAEC;EACA,Qd8BQ;;Ac3BT;EAME,QVuQmB;;;AWrRtB;EACC;;AAEA;EACC;EACA;EACA,MfiCU;;;AgB3CZ;EACC;EACA;EACA;EACA;EACA,kBhB+BiB;;;AiBjBlB;EACC","file":"styles-g10.css"}
@@ -1 +1 @@
1
- .bx--cc--axes g.axis g.tick text{fill:#565656;font-family:'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif}.bx--cc--axes g.axis g.tick line{display:none}.bx--cc--axes g.axis path.domain{stroke:#8c8c8c}.bx--cc--chart-svg g.callouts{stroke:#565656}.bx--cc--grid rect.chart-grid-backdrop{fill:#f3f3f3;stroke:#dcdcdc}.bx--cc--grid g.x.grid g.tick line,.bx--cc--grid g.y.grid g.tick line{pointer-events:none;stroke-width:1px;stroke:#dcdcdc}.bx--cc--grid g.x.grid g.tick.active line,.bx--cc--grid g.y.grid g.tick.active line{stroke-dasharray:2px;stroke:#0062ff}.bx--cc--zero-line line.domain{stroke:#8c8c8c}.bx--cc--chart-svg svg.layout-child{overflow:visible}g.bx--cc--legend{user-select:none}g.bx--cc--legend g.legend-item rect.checkbox{stroke-width:1px;stroke-opacity:1}g.bx--cc--legend g.legend-item rect.checkbox:not(.active){stroke:#565656;fill:#f3f3f3}g.bx--cc--legend g.legend-item rect.checkbox:not(.active)~g.check{display:none}g.bx--cc--legend g.legend-item rect.hover-stroke{fill:none;stroke:#0f62fe;stroke-width:2}g.bx--cc--legend g.legend-item g.check>svg path{fill:#f3f3f3;stroke:#f3f3f3}g.bx--cc--legend g.legend-item text{font-size:12px;fill:#565656}g.bx--cc--legend.clickable g.legend-item:hover{cursor:pointer}.bx--cc--title text.title{fill:#171717;font-size:16px;font-family:'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;font-weight:600}.bx--cc--tooltip{background-color:#f3f3f3;pointer-events:none;transition:opacity .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1);display:inline;box-shadow:0 1px 6px 0 rgba(0,0,0,.2);position:absolute;word-wrap:break-word;z-index:1059;font-family:'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif}.bx--cc--tooltip.hidden{opacity:0;transition:opacity .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1)}.bx--cc--tooltip .content-box{color:#171717}.bx--cc--tooltip .content-box .title-tooltip{line-height:16px;font-size:12px;padding:4px;min-width:20px}.bx--cc--tooltip .content-box .datapoint-tooltip,.bx--cc--tooltip .content-box .total-val{display:flex;padding:4px;flex-flow:row nowrap;width:auto;min-width:20px;justify-content:flex-start;align-items:center}.bx--cc--tooltip .content-box .datapoint-tooltip p,.bx--cc--tooltip .content-box .total-val p{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:16px;font-size:12px;display:inline-block;margin:0;padding:0;border:0}.bx--cc--tooltip .content-box .datapoint-tooltip p.label,.bx--cc--tooltip .content-box .total-val p.label{flex:1;margin-right:8px}.bx--cc--tooltip .content-box .datapoint-tooltip p.value,.bx--cc--tooltip .content-box .total-val p.value{width:auto}.bx--cc--tooltip .content-box .total-val{font-weight:600}.bx--cc--tooltip .content-box .total-val .label{margin-left:4px}.bx--cc--tooltip .content-box ul.multi-tooltip{margin:0;padding:0}.bx--cc--tooltip .content-box ul.multi-tooltip li{list-style:none;position:relative}.bx--cc--tooltip .content-box ul.multi-tooltip li:not(:last-child){border-bottom:1px solid #dcdcdc}.bx--cc--tooltip .tooltip-color{position:absolute;left:0;top:0;width:4px;height:100%}.bx--cc--tooltip .tooltip-color+p.label{margin-left:4px}g.bx--cc--bubble circle.dot.hovered{fill-opacity:1;transition:all .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1)}g.bx--cc--bubble circle.dot.unfilled{fill:#fff}g.bx--cc--bubble g.lines path.line{mix-blend-mode:multiply}.bx--cc--line path.line{pointer-events:none;fill:none;stroke-width:1.5}g.bx--cc--scatter circle.dot.hovered{fill-opacity:1;transition:all .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1)}g.bx--cc--scatter circle.dot.unfilled{fill:#fff;stroke-width:1.5}g.bx--cc--scatter g.lines path.line{mix-blend-mode:multiply}svg.bx--cc--chart-svg{font-family:'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif}svg.bx--cc--chart-svg text{font-size:12px;font-weight:400;fill:#565656}.bx--chart-holder{position:relative;display:block;width:100%;height:100%;background-color:#f3f3f3}svg.bx--cc--chart-svg{overflow:visible}/*# sourceMappingURL=styles-g10.min.css.map */
1
+ .bx--cc--axes g.axis g.tick text{fill:#565656;font-family:'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif}.bx--cc--axes g.axis g.tick line{display:none}.bx--cc--axes g.axis path.domain{stroke:#8c8c8c}.bx--cc--chart-svg g.callouts{stroke:#565656}.bx--cc--grid rect.chart-grid-backdrop{fill:#f3f3f3;stroke:#dcdcdc}.bx--cc--grid g.x.grid g.tick line,.bx--cc--grid g.y.grid g.tick line{pointer-events:none;stroke-width:1px;stroke:#dcdcdc}.bx--cc--grid g.x.grid g.tick.active line,.bx--cc--grid g.y.grid g.tick.active line{stroke-dasharray:2px;stroke:#0062ff}.bx--cc--ruler line.ruler-line{stroke:#000;stroke-width:1px;stroke-dasharray:2;pointer-events:none}.bx--cc--ruler text.axis-tooltip-text{fill:#fff;dominant-baseline:middle;text-anchor:middle}.bx--cc--zero-line line.domain{stroke:#8c8c8c}.bx--cc--chart-svg svg.layout-child{overflow:visible}g.bx--cc--legend{user-select:none}g.bx--cc--legend g.legend-item rect.checkbox{stroke-width:1px;stroke-opacity:1}g.bx--cc--legend g.legend-item rect.checkbox:not(.active){stroke:#565656;fill:#f3f3f3}g.bx--cc--legend g.legend-item rect.checkbox:not(.active)~g.check{display:none}g.bx--cc--legend g.legend-item rect.hover-stroke{fill:none;stroke:#0f62fe;stroke-width:2}g.bx--cc--legend g.legend-item g.check>svg path{fill:#f3f3f3;stroke:#f3f3f3}g.bx--cc--legend g.legend-item text{font-size:12px;fill:#565656}g.bx--cc--legend.clickable g.legend-item:hover{cursor:pointer}.bx--cc--title text.title{fill:#171717;font-size:16px;font-family:'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;font-weight:600}.bx--cc--tooltip{background-color:#f3f3f3;pointer-events:none;transition:opacity .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1);display:inline;box-shadow:0 1px 6px 0 rgba(0,0,0,.2);position:absolute;word-wrap:break-word;z-index:1059;font-family:'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif}.bx--cc--tooltip.hidden{opacity:0;transition:opacity .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1)}.bx--cc--tooltip .content-box{color:#171717}.bx--cc--tooltip .content-box .title-tooltip{line-height:16px;font-size:12px;padding:4px;min-width:20px}.bx--cc--tooltip .content-box .datapoint-tooltip,.bx--cc--tooltip .content-box .total-val{display:flex;padding:4px;flex-flow:row nowrap;width:auto;min-width:20px;justify-content:flex-start;align-items:center}.bx--cc--tooltip .content-box .datapoint-tooltip p,.bx--cc--tooltip .content-box .total-val p{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:16px;font-size:12px;display:inline-block;margin:0;padding:0;border:0}.bx--cc--tooltip .content-box .datapoint-tooltip p.label,.bx--cc--tooltip .content-box .total-val p.label{flex:1;margin-right:8px}.bx--cc--tooltip .content-box .datapoint-tooltip p.value,.bx--cc--tooltip .content-box .total-val p.value{width:auto}.bx--cc--tooltip .content-box .total-val{font-weight:600}.bx--cc--tooltip .content-box .total-val .label{margin-left:4px}.bx--cc--tooltip .content-box ul.multi-tooltip{margin:0;padding:0}.bx--cc--tooltip .content-box ul.multi-tooltip li{list-style:none;position:relative}.bx--cc--tooltip .content-box ul.multi-tooltip li:not(:last-child){border-bottom:1px solid #dcdcdc}.bx--cc--tooltip .tooltip-color{position:absolute;left:0;top:0;width:4px;height:100%}.bx--cc--tooltip .tooltip-color+p.label{margin-left:4px}g.bx--cc--bubble circle.dot.hovered{fill-opacity:1;transition:all .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1)}g.bx--cc--bubble circle.dot.unfilled{fill:#fff}g.bx--cc--bubble g.lines path.line{mix-blend-mode:multiply}.bx--cc--line path.line{pointer-events:none;fill:none;stroke-width:1.5}g.bx--cc--scatter circle.dot.hovered{fill-opacity:1;transition:all .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1)}g.bx--cc--scatter circle.dot.unfilled{fill:#fff;stroke-width:1.5}g.bx--cc--scatter g.lines path.line{mix-blend-mode:multiply}.bx--cc--radar .blobs path{stroke-width:1.5px}.bx--cc--radar .y-axes path,.bx--cc--radar .x-axes line{stroke-width:1px;stroke:#dcdcdc}.bx--cc--radar .x-axes line.hovered{stroke:#000}svg.bx--cc--chart-svg{font-family:'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif}svg.bx--cc--chart-svg text{font-size:12px;font-weight:400;fill:#565656}.bx--chart-holder{position:relative;display:block;width:100%;height:100%;background-color:#f3f3f3}svg.bx--cc--chart-svg{overflow:visible}/*# sourceMappingURL=styles-g10.min.css.map */
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["styles/components/_axis.scss","styles/vendor/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/themes/_mixins.scss","styles/components/_callouts.scss","styles/components/_grid.scss","styles/components/_zero-line.scss","styles/components/_layout.scss","styles/components/_legend.scss","styles/vendor/@carbon/colors/scss/mixins.scss","styles/components/_title.scss","styles/components/_tooltip.scss","styles/vendor/@carbon/motion/scss/motion.scss","styles/graphs/_bubble.scss","styles/graphs/_line.scss","styles/graphs/_scatter.scss","styles/_type.scss","styles/_chart-holder.scss","styles/styles.scss"],"names":[],"mappings":"AAKC,iCACC,KCqCU,QDpCV,2EAGD,iCACC,aAGD,iCACC,OCyBQ,QCxCV,8BACC,OD0CW,QE1CX,uCAME,KF6Be,QE3BhB,OF8BQ,QEzBR,sEACC,oBACA,iBACA,OFsBO,QEnBR,oFACC,qBACA,OF0CO,QGhEV,+BACC,OHuCS,QIxCV,oCACC,iBCDD,iBACC,iBAGC,6CACC,iBACA,iBAEA,0DACC,OLkCQ,QKjCR,KL0Bc,QKvBf,kEACC,aAIF,iDACC,UACA,OC2QiB,QD1QjB,eAGD,gDACC,KLWe,QKVf,OLUe,QKPhB,oCACC,eACA,KLYS,QKRX,+CACC,eElCF,0BACC,KPuCW,QOtCX,eACA,iEACA,gBCDD,iBACC,iBRgCS,QQ/BT,oBACA,uBC4CC,2DD1CD,eACA,sCACA,kBACA,qBACA,aACA,2EAEA,wBACC,UACA,uBCiCA,2DD7BD,8BACC,MRkBU,QQhBV,6CACC,iBACA,eACA,YACA,eAGD,0FACC,aACA,YACA,qBACA,WACA,eACA,2BACA,mBAEA,8FACC,mBACA,gBACA,uBACA,iBACA,eACA,qBACA,SACA,UACA,SAEA,0GACC,OACA,iBAGD,0GACC,WAKH,yCACC,gBACA,gDACC,gBAIF,+CACC,SACA,UAEA,kDACC,gBACA,kBAEA,mEAME,gCAOL,gCACC,kBACA,OACA,MACA,UACA,YACA,wCACC,gBEhGF,oCACC,eACA,mBD+CA,2DC3CD,qCACC,KV2BQ,KUxBT,mCACC,wBCdF,wBACC,oBACA,UACA,sDCCC,eACA,mBH+CA,2DG3CD,sCACC,KZ2BQ,KY1BR,iBAGD,oCACC,wBCXF,sBACC,2EAEA,2BACC,eACA,gBACA,KbiCU,Qc3CZ,kBACC,kBACA,cACA,WACA,YACA,iBd+BiB,QejBlB,sBACC","file":"styles-g10.min.css"}
1
+ {"version":3,"sourceRoot":"","sources":["styles/components/_axis.scss","styles/vendor/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/themes/_mixins.scss","styles/components/_callouts.scss","styles/components/_grid.scss","styles/components/_ruler.scss","styles/vendor/@carbon/colors/scss/mixins.scss","styles/components/_zero-line.scss","styles/components/_layout.scss","styles/components/_legend.scss","styles/components/_title.scss","styles/components/_tooltip.scss","styles/vendor/@carbon/motion/scss/motion.scss","styles/graphs/_bubble.scss","styles/graphs/_line.scss","styles/graphs/_scatter.scss","styles/graphs/_radar.scss","styles/_type.scss","styles/_chart-holder.scss","styles/styles.scss"],"names":[],"mappings":"AAKC,iCACC,KCqCU,QDpCV,2EAGD,iCACC,aAGD,iCACC,OCyBQ,QCxCV,8BACC,OD0CW,QE1CX,uCAME,KF6Be,QE3BhB,OF8BQ,QEzBR,sEACC,oBACA,iBACA,OFsBO,QEnBR,oFACC,qBACA,OF0CO,QG/DT,+BAME,OCkRmB,KD/QpB,iBACA,mBACA,oBAGD,sCACC,KC+WkB,KD9WlB,yBACA,mBElBF,+BACC,OLuCS,QMxCV,oCACC,iBCDD,iBACC,iBAGC,6CACC,iBACA,iBAEA,0DACC,OPkCQ,QOjCR,KP0Bc,QOvBf,kEACC,aAIF,iDACC,UACA,OH2QiB,QG1QjB,eAGD,gDACC,KPWe,QOVf,OPUe,QOPhB,oCACC,eACA,KPYS,QORX,+CACC,eClCF,0BACC,KRuCW,QQtCX,eACA,iEACA,gBCDD,iBACC,iBTgCS,QS/BT,oBACA,uBC4CC,2DD1CD,eACA,sCACA,kBACA,qBACA,aACA,2EAEA,wBACC,UACA,uBCiCA,2DD7BD,8BACC,MTkBU,QShBV,6CACC,iBACA,eACA,YACA,eAGD,0FACC,aACA,YACA,qBACA,WACA,eACA,2BACA,mBAEA,8FACC,mBACA,gBACA,uBACA,iBACA,eACA,qBACA,SACA,UACA,SAEA,0GACC,OACA,iBAGD,0GACC,WAKH,yCACC,gBACA,gDACC,gBAIF,+CACC,SACA,UAEA,kDACC,gBACA,kBAEA,mEAME,gCAOL,gCACC,kBACA,OACA,MACA,UACA,YACA,wCACC,gBEhGF,oCACC,eACA,mBD+CA,2DC3CD,qCACC,KX2BQ,KWxBT,mCACC,wBCdF,wBACC,oBACA,UACA,sDCCC,eACA,mBH+CA,2DG3CD,sCACC,Kb2BQ,Ka1BR,iBAGD,oCACC,wBCbD,2BACC,mBAGD,wDAEC,iBACA,Od8BQ,Qc3BT,oCAME,OVuQmB,KWrRtB,sBACC,2EAEA,2BACC,eACA,gBACA,KfiCU,QgB3CZ,kBACC,kBACA,cACA,WACA,YACA,iBhB+BiB,QiBjBlB,sBACC","file":"styles-g10.min.css"}
package/styles-g100.css CHANGED
@@ -28,6 +28,18 @@
28
28
  stroke: #ffffff;
29
29
  }
30
30
 
31
+ .bx--cc--ruler line.ruler-line {
32
+ stroke: #ffffff;
33
+ stroke-width: 1px;
34
+ stroke-dasharray: 2;
35
+ pointer-events: none;
36
+ }
37
+ .bx--cc--ruler text.axis-tooltip-text {
38
+ fill: #ffffff;
39
+ dominant-baseline: middle;
40
+ text-anchor: middle;
41
+ }
42
+
31
43
  .bx--cc--zero-line line.domain {
32
44
  stroke: #6f6f6f;
33
45
  }
@@ -186,6 +198,18 @@ g.bx--cc--scatter g.lines path.line {
186
198
  mix-blend-mode: multiply;
187
199
  }
188
200
 
201
+ .bx--cc--radar .blobs path {
202
+ stroke-width: 1.5px;
203
+ }
204
+ .bx--cc--radar .y-axes path,
205
+ .bx--cc--radar .x-axes line {
206
+ stroke-width: 1px;
207
+ stroke: #3d3d3d;
208
+ }
209
+ .bx--cc--radar .x-axes line.hovered {
210
+ stroke: #ffffff;
211
+ }
212
+
189
213
  svg.bx--cc--chart-svg {
190
214
  font-family: 'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif;
191
215
  }
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["styles/components/_axis.scss","styles/vendor/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/themes/_mixins.scss","styles/components/_callouts.scss","styles/components/_grid.scss","styles/components/_zero-line.scss","styles/components/_layout.scss","styles/components/_legend.scss","styles/vendor/@carbon/colors/scss/mixins.scss","styles/components/_title.scss","styles/components/_tooltip.scss","styles/vendor/@carbon/motion/scss/motion.scss","styles/graphs/_bubble.scss","styles/graphs/_line.scss","styles/graphs/_scatter.scss","styles/_type.scss","styles/_chart-holder.scss","styles/styles.scss"],"names":[],"mappings":"AAKC;EACC,MCqCU;EDpCV;;AAGD;EACC;;AAGD;EACC,QCyBQ;;ACxCV;EACC,QD0CW;;;AE1CX;EAME,MF6Be;EE3BhB,QF8BQ;;AEzBR;AAAA;EACC;EACA;EACA,QFsBO;;AEnBR;AAAA;EACC;EACA,QF0CO;;;AGhEV;EACC,QHuCS;;;AIxCV;EACC;;;ACDD;EACC;;AAGC;EACC;EACA;;AAEA;EACC,QLkCQ;EKjCR,ML0Bc;;AKvBf;EACC;;AAIF;EACC;EACA,QC2QiB;ED1QjB;;AAGD;EACC,MLWe;EKVf,QLUe;;AKPhB;EACC;EACA,MLYS;;AKRX;EACC;;;AElCF;EACC,MPuCW;EOtCX;EACA;EACA;;;ACDD;EACC,kBRgCS;EQ/BT;EACA;EC4CC;ED1CD;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;ECiCA;;AD7BD;EACC,ORkBU;;AQhBV;EACC;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;;AAGD;EACC;;AAKH;EACC;;AACA;EACC;;AAIF;EACC;EACA;;AAEA;EACC;EACA;;AAEA;EAME;;AAOL;EACC;EACA;EACA;EACA;EACA;;AACA;EACC;;;AEhGF;EACC;EACA;ED+CA;;AC3CD;EACC,MV2BQ;;AUxBT;EACC;;;ACdF;EACC;EACA;EACA;;;ACAA;EACC;EACA;EH+CA;;AG3CD;EACC,MZ2BQ;EY1BR;;AAGD;EACC;;;ACXF;EACC;;AAEA;EACC;EACA;EACA,MbiCU;;;Ac3CZ;EACC;EACA;EACA;EACA;EACA,kBd+BiB;;;AejBlB;EACC","file":"styles-g100.css"}
1
+ {"version":3,"sourceRoot":"","sources":["styles/components/_axis.scss","styles/vendor/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/themes/_mixins.scss","styles/components/_callouts.scss","styles/components/_grid.scss","styles/components/_ruler.scss","styles/vendor/@carbon/colors/scss/mixins.scss","styles/components/_zero-line.scss","styles/components/_layout.scss","styles/components/_legend.scss","styles/components/_title.scss","styles/components/_tooltip.scss","styles/vendor/@carbon/motion/scss/motion.scss","styles/graphs/_bubble.scss","styles/graphs/_line.scss","styles/graphs/_scatter.scss","styles/graphs/_radar.scss","styles/_type.scss","styles/_chart-holder.scss","styles/styles.scss"],"names":[],"mappings":"AAKC;EACC,MCqCU;EDpCV;;AAGD;EACC;;AAGD;EACC,QCyBQ;;ACxCV;EACC,QD0CW;;;AE1CX;EAME,MF6Be;EE3BhB,QF8BQ;;AEzBR;AAAA;EACC;EACA;EACA,QFsBO;;AEnBR;AAAA;EACC;EACA,QF0CO;;;AG/DT;EAIE,QC0XiB;EDrXlB;EACA;EACA;;AAGD;EACC,MC+WkB;ED9WlB;EACA;;;AElBF;EACC,QLuCS;;;AMxCV;EACC;;;ACDD;EACC;;AAGC;EACC;EACA;;AAEA;EACC,QPkCQ;EOjCR,MP0Bc;;AOvBf;EACC;;AAIF;EACC;EACA,QH2QiB;EG1QjB;;AAGD;EACC,MPWe;EOVf,QPUe;;AOPhB;EACC;EACA,MPYS;;AORX;EACC;;;AClCF;EACC,MRuCW;EQtCX;EACA;EACA;;;ACDD;EACC,kBTgCS;ES/BT;EACA;EC4CC;ED1CD;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;ECiCA;;AD7BD;EACC,OTkBU;;AShBV;EACC;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;;AAGD;EACC;;AAKH;EACC;;AACA;EACC;;AAIF;EACC;EACA;;AAEA;EACC;EACA;;AAEA;EAME;;AAOL;EACC;EACA;EACA;EACA;EACA;;AACA;EACC;;;AEhGF;EACC;EACA;ED+CA;;AC3CD;EACC,MX2BQ;;AWxBT;EACC;;;ACdF;EACC;EACA;EACA;;;ACAA;EACC;EACA;EH+CA;;AG3CD;EACC,Mb2BQ;Ea1BR;;AAGD;EACC;;;ACbD;EACC;;AAGD;AAAA;EAEC;EACA,Qd8BQ;;Ac3BT;EAIE,QV+WiB;;;AW3XpB;EACC;;AAEA;EACC;EACA;EACA,MfiCU;;;AgB3CZ;EACC;EACA;EACA;EACA;EACA,kBhB+BiB;;;AiBjBlB;EACC","file":"styles-g100.css"}
@@ -1 +1 @@
1
- .bx--cc--axes g.axis g.tick text{fill:#bebebe;font-family:'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif}.bx--cc--axes g.axis g.tick line{display:none}.bx--cc--axes g.axis path.domain{stroke:#6f6f6f}.bx--cc--chart-svg g.callouts{stroke:#bebebe}.bx--cc--grid rect.chart-grid-backdrop{fill:#171717;stroke:#3d3d3d}.bx--cc--grid g.x.grid g.tick line,.bx--cc--grid g.y.grid g.tick line{pointer-events:none;stroke-width:1px;stroke:#3d3d3d}.bx--cc--grid g.x.grid g.tick.active line,.bx--cc--grid g.y.grid g.tick.active line{stroke-dasharray:2px;stroke:#fff}.bx--cc--zero-line line.domain{stroke:#6f6f6f}.bx--cc--chart-svg svg.layout-child{overflow:visible}g.bx--cc--legend{user-select:none}g.bx--cc--legend g.legend-item rect.checkbox{stroke-width:1px;stroke-opacity:1}g.bx--cc--legend g.legend-item rect.checkbox:not(.active){stroke:#bebebe;fill:#171717}g.bx--cc--legend g.legend-item rect.checkbox:not(.active)~g.check{display:none}g.bx--cc--legend g.legend-item rect.hover-stroke{fill:none;stroke:#0f62fe;stroke-width:2}g.bx--cc--legend g.legend-item g.check>svg path{fill:#171717;stroke:#171717}g.bx--cc--legend g.legend-item text{font-size:12px;fill:#bebebe}g.bx--cc--legend.clickable g.legend-item:hover{cursor:pointer}.bx--cc--title text.title{fill:#f3f3f3;font-size:16px;font-family:'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;font-weight:600}.bx--cc--tooltip{background-color:#3d3d3d;pointer-events:none;transition:opacity .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1);display:inline;box-shadow:0 1px 6px 0 rgba(0,0,0,.2);position:absolute;word-wrap:break-word;z-index:1059;font-family:'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif}.bx--cc--tooltip.hidden{opacity:0;transition:opacity .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1)}.bx--cc--tooltip .content-box{color:#f3f3f3}.bx--cc--tooltip .content-box .title-tooltip{line-height:16px;font-size:12px;padding:4px;min-width:20px}.bx--cc--tooltip .content-box .datapoint-tooltip,.bx--cc--tooltip .content-box .total-val{display:flex;padding:4px;flex-flow:row nowrap;width:auto;min-width:20px;justify-content:flex-start;align-items:center}.bx--cc--tooltip .content-box .datapoint-tooltip p,.bx--cc--tooltip .content-box .total-val p{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:16px;font-size:12px;display:inline-block;margin:0;padding:0;border:0}.bx--cc--tooltip .content-box .datapoint-tooltip p.label,.bx--cc--tooltip .content-box .total-val p.label{flex:1;margin-right:8px}.bx--cc--tooltip .content-box .datapoint-tooltip p.value,.bx--cc--tooltip .content-box .total-val p.value{width:auto}.bx--cc--tooltip .content-box .total-val{font-weight:600}.bx--cc--tooltip .content-box .total-val .label{margin-left:4px}.bx--cc--tooltip .content-box ul.multi-tooltip{margin:0;padding:0}.bx--cc--tooltip .content-box ul.multi-tooltip li{list-style:none;position:relative}.bx--cc--tooltip .content-box ul.multi-tooltip li:not(:last-child){border-bottom:1px solid #3d3d3d}.bx--cc--tooltip .tooltip-color{position:absolute;left:0;top:0;width:4px;height:100%}.bx--cc--tooltip .tooltip-color+p.label{margin-left:4px}g.bx--cc--bubble circle.dot.hovered{fill-opacity:1;transition:all .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1)}g.bx--cc--bubble circle.dot.unfilled{fill:#282828}g.bx--cc--bubble g.lines path.line{mix-blend-mode:multiply}.bx--cc--line path.line{pointer-events:none;fill:none;stroke-width:1.5}g.bx--cc--scatter circle.dot.hovered{fill-opacity:1;transition:all .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1)}g.bx--cc--scatter circle.dot.unfilled{fill:#282828;stroke-width:1.5}g.bx--cc--scatter g.lines path.line{mix-blend-mode:multiply}svg.bx--cc--chart-svg{font-family:'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif}svg.bx--cc--chart-svg text{font-size:12px;font-weight:400;fill:#bebebe}.bx--chart-holder{position:relative;display:block;width:100%;height:100%;background-color:#171717}svg.bx--cc--chart-svg{overflow:visible}/*# sourceMappingURL=styles-g100.min.css.map */
1
+ .bx--cc--axes g.axis g.tick text{fill:#bebebe;font-family:'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif}.bx--cc--axes g.axis g.tick line{display:none}.bx--cc--axes g.axis path.domain{stroke:#6f6f6f}.bx--cc--chart-svg g.callouts{stroke:#bebebe}.bx--cc--grid rect.chart-grid-backdrop{fill:#171717;stroke:#3d3d3d}.bx--cc--grid g.x.grid g.tick line,.bx--cc--grid g.y.grid g.tick line{pointer-events:none;stroke-width:1px;stroke:#3d3d3d}.bx--cc--grid g.x.grid g.tick.active line,.bx--cc--grid g.y.grid g.tick.active line{stroke-dasharray:2px;stroke:#fff}.bx--cc--ruler line.ruler-line{stroke:#fff;stroke-width:1px;stroke-dasharray:2;pointer-events:none}.bx--cc--ruler text.axis-tooltip-text{fill:#fff;dominant-baseline:middle;text-anchor:middle}.bx--cc--zero-line line.domain{stroke:#6f6f6f}.bx--cc--chart-svg svg.layout-child{overflow:visible}g.bx--cc--legend{user-select:none}g.bx--cc--legend g.legend-item rect.checkbox{stroke-width:1px;stroke-opacity:1}g.bx--cc--legend g.legend-item rect.checkbox:not(.active){stroke:#bebebe;fill:#171717}g.bx--cc--legend g.legend-item rect.checkbox:not(.active)~g.check{display:none}g.bx--cc--legend g.legend-item rect.hover-stroke{fill:none;stroke:#0f62fe;stroke-width:2}g.bx--cc--legend g.legend-item g.check>svg path{fill:#171717;stroke:#171717}g.bx--cc--legend g.legend-item text{font-size:12px;fill:#bebebe}g.bx--cc--legend.clickable g.legend-item:hover{cursor:pointer}.bx--cc--title text.title{fill:#f3f3f3;font-size:16px;font-family:'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;font-weight:600}.bx--cc--tooltip{background-color:#3d3d3d;pointer-events:none;transition:opacity .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1);display:inline;box-shadow:0 1px 6px 0 rgba(0,0,0,.2);position:absolute;word-wrap:break-word;z-index:1059;font-family:'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif}.bx--cc--tooltip.hidden{opacity:0;transition:opacity .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1)}.bx--cc--tooltip .content-box{color:#f3f3f3}.bx--cc--tooltip .content-box .title-tooltip{line-height:16px;font-size:12px;padding:4px;min-width:20px}.bx--cc--tooltip .content-box .datapoint-tooltip,.bx--cc--tooltip .content-box .total-val{display:flex;padding:4px;flex-flow:row nowrap;width:auto;min-width:20px;justify-content:flex-start;align-items:center}.bx--cc--tooltip .content-box .datapoint-tooltip p,.bx--cc--tooltip .content-box .total-val p{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:16px;font-size:12px;display:inline-block;margin:0;padding:0;border:0}.bx--cc--tooltip .content-box .datapoint-tooltip p.label,.bx--cc--tooltip .content-box .total-val p.label{flex:1;margin-right:8px}.bx--cc--tooltip .content-box .datapoint-tooltip p.value,.bx--cc--tooltip .content-box .total-val p.value{width:auto}.bx--cc--tooltip .content-box .total-val{font-weight:600}.bx--cc--tooltip .content-box .total-val .label{margin-left:4px}.bx--cc--tooltip .content-box ul.multi-tooltip{margin:0;padding:0}.bx--cc--tooltip .content-box ul.multi-tooltip li{list-style:none;position:relative}.bx--cc--tooltip .content-box ul.multi-tooltip li:not(:last-child){border-bottom:1px solid #3d3d3d}.bx--cc--tooltip .tooltip-color{position:absolute;left:0;top:0;width:4px;height:100%}.bx--cc--tooltip .tooltip-color+p.label{margin-left:4px}g.bx--cc--bubble circle.dot.hovered{fill-opacity:1;transition:all .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1)}g.bx--cc--bubble circle.dot.unfilled{fill:#282828}g.bx--cc--bubble g.lines path.line{mix-blend-mode:multiply}.bx--cc--line path.line{pointer-events:none;fill:none;stroke-width:1.5}g.bx--cc--scatter circle.dot.hovered{fill-opacity:1;transition:all .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1)}g.bx--cc--scatter circle.dot.unfilled{fill:#282828;stroke-width:1.5}g.bx--cc--scatter g.lines path.line{mix-blend-mode:multiply}.bx--cc--radar .blobs path{stroke-width:1.5px}.bx--cc--radar .y-axes path,.bx--cc--radar .x-axes line{stroke-width:1px;stroke:#3d3d3d}.bx--cc--radar .x-axes line.hovered{stroke:#fff}svg.bx--cc--chart-svg{font-family:'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif}svg.bx--cc--chart-svg text{font-size:12px;font-weight:400;fill:#bebebe}.bx--chart-holder{position:relative;display:block;width:100%;height:100%;background-color:#171717}svg.bx--cc--chart-svg{overflow:visible}/*# sourceMappingURL=styles-g100.min.css.map */
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["styles/components/_axis.scss","styles/vendor/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/themes/_mixins.scss","styles/components/_callouts.scss","styles/components/_grid.scss","styles/components/_zero-line.scss","styles/components/_layout.scss","styles/components/_legend.scss","styles/vendor/@carbon/colors/scss/mixins.scss","styles/components/_title.scss","styles/components/_tooltip.scss","styles/vendor/@carbon/motion/scss/motion.scss","styles/graphs/_bubble.scss","styles/graphs/_line.scss","styles/graphs/_scatter.scss","styles/_type.scss","styles/_chart-holder.scss","styles/styles.scss"],"names":[],"mappings":"AAKC,iCACC,KCqCU,QDpCV,2EAGD,iCACC,aAGD,iCACC,OCyBQ,QCxCV,8BACC,OD0CW,QE1CX,uCAME,KF6Be,QE3BhB,OF8BQ,QEzBR,sEACC,oBACA,iBACA,OFsBO,QEnBR,oFACC,qBACA,OF0CO,KGhEV,+BACC,OHuCS,QIxCV,oCACC,iBCDD,iBACC,iBAGC,6CACC,iBACA,iBAEA,0DACC,OLkCQ,QKjCR,KL0Bc,QKvBf,kEACC,aAIF,iDACC,UACA,OC2QiB,QD1QjB,eAGD,gDACC,KLWe,QKVf,OLUe,QKPhB,oCACC,eACA,KLYS,QKRX,+CACC,eElCF,0BACC,KPuCW,QOtCX,eACA,iEACA,gBCDD,iBACC,iBRgCS,QQ/BT,oBACA,uBC4CC,2DD1CD,eACA,sCACA,kBACA,qBACA,aACA,2EAEA,wBACC,UACA,uBCiCA,2DD7BD,8BACC,MRkBU,QQhBV,6CACC,iBACA,eACA,YACA,eAGD,0FACC,aACA,YACA,qBACA,WACA,eACA,2BACA,mBAEA,8FACC,mBACA,gBACA,uBACA,iBACA,eACA,qBACA,SACA,UACA,SAEA,0GACC,OACA,iBAGD,0GACC,WAKH,yCACC,gBACA,gDACC,gBAIF,+CACC,SACA,UAEA,kDACC,gBACA,kBAEA,mEAME,gCAOL,gCACC,kBACA,OACA,MACA,UACA,YACA,wCACC,gBEhGF,oCACC,eACA,mBD+CA,2DC3CD,qCACC,KV2BQ,QUxBT,mCACC,wBCdF,wBACC,oBACA,UACA,sDCCC,eACA,mBH+CA,2DG3CD,sCACC,KZ2BQ,QY1BR,iBAGD,oCACC,wBCXF,sBACC,2EAEA,2BACC,eACA,gBACA,KbiCU,Qc3CZ,kBACC,kBACA,cACA,WACA,YACA,iBd+BiB,QejBlB,sBACC","file":"styles-g100.min.css"}
1
+ {"version":3,"sourceRoot":"","sources":["styles/components/_axis.scss","styles/vendor/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/themes/_mixins.scss","styles/components/_callouts.scss","styles/components/_grid.scss","styles/components/_ruler.scss","styles/vendor/@carbon/colors/scss/mixins.scss","styles/components/_zero-line.scss","styles/components/_layout.scss","styles/components/_legend.scss","styles/components/_title.scss","styles/components/_tooltip.scss","styles/vendor/@carbon/motion/scss/motion.scss","styles/graphs/_bubble.scss","styles/graphs/_line.scss","styles/graphs/_scatter.scss","styles/graphs/_radar.scss","styles/_type.scss","styles/_chart-holder.scss","styles/styles.scss"],"names":[],"mappings":"AAKC,iCACC,KCqCU,QDpCV,2EAGD,iCACC,aAGD,iCACC,OCyBQ,QCxCV,8BACC,OD0CW,QE1CX,uCAME,KF6Be,QE3BhB,OF8BQ,QEzBR,sEACC,oBACA,iBACA,OFsBO,QEnBR,oFACC,qBACA,OF0CO,KG/DT,+BAIE,OC0XiB,KDrXlB,iBACA,mBACA,oBAGD,sCACC,KC+WkB,KD9WlB,yBACA,mBElBF,+BACC,OLuCS,QMxCV,oCACC,iBCDD,iBACC,iBAGC,6CACC,iBACA,iBAEA,0DACC,OPkCQ,QOjCR,KP0Bc,QOvBf,kEACC,aAIF,iDACC,UACA,OH2QiB,QG1QjB,eAGD,gDACC,KPWe,QOVf,OPUe,QOPhB,oCACC,eACA,KPYS,QORX,+CACC,eClCF,0BACC,KRuCW,QQtCX,eACA,iEACA,gBCDD,iBACC,iBTgCS,QS/BT,oBACA,uBC4CC,2DD1CD,eACA,sCACA,kBACA,qBACA,aACA,2EAEA,wBACC,UACA,uBCiCA,2DD7BD,8BACC,MTkBU,QShBV,6CACC,iBACA,eACA,YACA,eAGD,0FACC,aACA,YACA,qBACA,WACA,eACA,2BACA,mBAEA,8FACC,mBACA,gBACA,uBACA,iBACA,eACA,qBACA,SACA,UACA,SAEA,0GACC,OACA,iBAGD,0GACC,WAKH,yCACC,gBACA,gDACC,gBAIF,+CACC,SACA,UAEA,kDACC,gBACA,kBAEA,mEAME,gCAOL,gCACC,kBACA,OACA,MACA,UACA,YACA,wCACC,gBEhGF,oCACC,eACA,mBD+CA,2DC3CD,qCACC,KX2BQ,QWxBT,mCACC,wBCdF,wBACC,oBACA,UACA,sDCCC,eACA,mBH+CA,2DG3CD,sCACC,Kb2BQ,Qa1BR,iBAGD,oCACC,wBCbD,2BACC,mBAGD,wDAEC,iBACA,Od8BQ,Qc3BT,oCAIE,OV+WiB,KW3XpB,sBACC,2EAEA,2BACC,eACA,gBACA,KfiCU,QgB3CZ,kBACC,kBACA,cACA,WACA,YACA,iBhB+BiB,QiBjBlB,sBACC","file":"styles-g100.min.css"}
package/styles-g90.css CHANGED
@@ -28,6 +28,18 @@
28
28
  stroke: #ffffff;
29
29
  }
30
30
 
31
+ .bx--cc--ruler line.ruler-line {
32
+ stroke: #ffffff;
33
+ stroke-width: 1px;
34
+ stroke-dasharray: 2;
35
+ pointer-events: none;
36
+ }
37
+ .bx--cc--ruler text.axis-tooltip-text {
38
+ fill: #ffffff;
39
+ dominant-baseline: middle;
40
+ text-anchor: middle;
41
+ }
42
+
31
43
  .bx--cc--zero-line line.domain {
32
44
  stroke: #8c8c8c;
33
45
  }
@@ -186,6 +198,18 @@ g.bx--cc--scatter g.lines path.line {
186
198
  mix-blend-mode: multiply;
187
199
  }
188
200
 
201
+ .bx--cc--radar .blobs path {
202
+ stroke-width: 1.5px;
203
+ }
204
+ .bx--cc--radar .y-axes path,
205
+ .bx--cc--radar .x-axes line {
206
+ stroke-width: 1px;
207
+ stroke: #565656;
208
+ }
209
+ .bx--cc--radar .x-axes line.hovered {
210
+ stroke: #ffffff;
211
+ }
212
+
189
213
  svg.bx--cc--chart-svg {
190
214
  font-family: 'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif;
191
215
  }
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["styles/components/_axis.scss","styles/vendor/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/themes/_mixins.scss","styles/components/_callouts.scss","styles/components/_grid.scss","styles/components/_zero-line.scss","styles/components/_layout.scss","styles/components/_legend.scss","styles/vendor/@carbon/colors/scss/mixins.scss","styles/components/_title.scss","styles/components/_tooltip.scss","styles/vendor/@carbon/motion/scss/motion.scss","styles/graphs/_bubble.scss","styles/graphs/_line.scss","styles/graphs/_scatter.scss","styles/_type.scss","styles/_chart-holder.scss","styles/styles.scss"],"names":[],"mappings":"AAKC;EACC,MCqCU;EDpCV;;AAGD;EACC;;AAGD;EACC,QCyBQ;;ACxCV;EACC,QD0CW;;;AE1CX;EAME,MF6Be;EE3BhB,QF8BQ;;AEzBR;AAAA;EACC;EACA;EACA,QFsBO;;AEnBR;AAAA;EACC;EACA,QF0CO;;;AGhEV;EACC,QHuCS;;;AIxCV;EACC;;;ACDD;EACC;;AAGC;EACC;EACA;;AAEA;EACC,QLkCQ;EKjCR,ML0Bc;;AKvBf;EACC;;AAIF;EACC;EACA,QC2QiB;ED1QjB;;AAGD;EACC,MLWe;EKVf,QLUe;;AKPhB;EACC;EACA,MLYS;;AKRX;EACC;;;AElCF;EACC,MPuCW;EOtCX;EACA;EACA;;;ACDD;EACC,kBRgCS;EQ/BT;EACA;EC4CC;ED1CD;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;ECiCA;;AD7BD;EACC,ORkBU;;AQhBV;EACC;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;;AAGD;EACC;;AAKH;EACC;;AACA;EACC;;AAIF;EACC;EACA;;AAEA;EACC;EACA;;AAEA;EAME;;AAOL;EACC;EACA;EACA;EACA;EACA;;AACA;EACC;;;AEhGF;EACC;EACA;ED+CA;;AC3CD;EACC,MV2BQ;;AUxBT;EACC;;;ACdF;EACC;EACA;EACA;;;ACAA;EACC;EACA;EH+CA;;AG3CD;EACC,MZ2BQ;EY1BR;;AAGD;EACC;;;ACXF;EACC;;AAEA;EACC;EACA;EACA,MbiCU;;;Ac3CZ;EACC;EACA;EACA;EACA;EACA,kBd+BiB;;;AejBlB;EACC","file":"styles-g90.css"}
1
+ {"version":3,"sourceRoot":"","sources":["styles/components/_axis.scss","styles/vendor/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/themes/_mixins.scss","styles/components/_callouts.scss","styles/components/_grid.scss","styles/components/_ruler.scss","styles/vendor/@carbon/colors/scss/mixins.scss","styles/components/_zero-line.scss","styles/components/_layout.scss","styles/components/_legend.scss","styles/components/_title.scss","styles/components/_tooltip.scss","styles/vendor/@carbon/motion/scss/motion.scss","styles/graphs/_bubble.scss","styles/graphs/_line.scss","styles/graphs/_scatter.scss","styles/graphs/_radar.scss","styles/_type.scss","styles/_chart-holder.scss","styles/styles.scss"],"names":[],"mappings":"AAKC;EACC,MCqCU;EDpCV;;AAGD;EACC;;AAGD;EACC,QCyBQ;;ACxCV;EACC,QD0CW;;;AE1CX;EAME,MF6Be;EE3BhB,QF8BQ;;AEzBR;AAAA;EACC;EACA;EACA,QFsBO;;AEnBR;AAAA;EACC;EACA,QF0CO;;;AG/DT;EAEE,QC4XiB;EDrXlB;EACA;EACA;;AAGD;EACC,MC+WkB;ED9WlB;EACA;;;AElBF;EACC,QLuCS;;;AMxCV;EACC;;;ACDD;EACC;;AAGC;EACC;EACA;;AAEA;EACC,QPkCQ;EOjCR,MP0Bc;;AOvBf;EACC;;AAIF;EACC;EACA,QH2QiB;EG1QjB;;AAGD;EACC,MPWe;EOVf,QPUe;;AOPhB;EACC;EACA,MPYS;;AORX;EACC;;;AClCF;EACC,MRuCW;EQtCX;EACA;EACA;;;ACDD;EACC,kBTgCS;ES/BT;EACA;EC4CC;ED1CD;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;ECiCA;;AD7BD;EACC,OTkBU;;AShBV;EACC;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;;AAGD;EACC;;AAKH;EACC;;AACA;EACC;;AAIF;EACC;EACA;;AAEA;EACC;EACA;;AAEA;EAME;;AAOL;EACC;EACA;EACA;EACA;EACA;;AACA;EACC;;;AEhGF;EACC;EACA;ED+CA;;AC3CD;EACC,MX2BQ;;AWxBT;EACC;;;ACdF;EACC;EACA;EACA;;;ACAA;EACC;EACA;EH+CA;;AG3CD;EACC,Mb2BQ;Ea1BR;;AAGD;EACC;;;ACbD;EACC;;AAGD;AAAA;EAEC;EACA,Qd8BQ;;Ac3BT;EAEE,QViXiB;;;AW3XpB;EACC;;AAEA;EACC;EACA;EACA,MfiCU;;;AgB3CZ;EACC;EACA;EACA;EACA;EACA,kBhB+BiB;;;AiBjBlB;EACC","file":"styles-g90.css"}
@@ -1 +1 @@
1
- .bx--cc--axes g.axis g.tick text{fill:#bebebe;font-family:'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif}.bx--cc--axes g.axis g.tick line{display:none}.bx--cc--axes g.axis path.domain{stroke:#8c8c8c}.bx--cc--chart-svg g.callouts{stroke:#bebebe}.bx--cc--grid rect.chart-grid-backdrop{fill:#282828;stroke:#565656}.bx--cc--grid g.x.grid g.tick line,.bx--cc--grid g.y.grid g.tick line{pointer-events:none;stroke-width:1px;stroke:#565656}.bx--cc--grid g.x.grid g.tick.active line,.bx--cc--grid g.y.grid g.tick.active line{stroke-dasharray:2px;stroke:#fff}.bx--cc--zero-line line.domain{stroke:#8c8c8c}.bx--cc--chart-svg svg.layout-child{overflow:visible}g.bx--cc--legend{user-select:none}g.bx--cc--legend g.legend-item rect.checkbox{stroke-width:1px;stroke-opacity:1}g.bx--cc--legend g.legend-item rect.checkbox:not(.active){stroke:#bebebe;fill:#282828}g.bx--cc--legend g.legend-item rect.checkbox:not(.active)~g.check{display:none}g.bx--cc--legend g.legend-item rect.hover-stroke{fill:none;stroke:#0f62fe;stroke-width:2}g.bx--cc--legend g.legend-item g.check>svg path{fill:#282828;stroke:#282828}g.bx--cc--legend g.legend-item text{font-size:12px;fill:#bebebe}g.bx--cc--legend.clickable g.legend-item:hover{cursor:pointer}.bx--cc--title text.title{fill:#f3f3f3;font-size:16px;font-family:'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;font-weight:600}.bx--cc--tooltip{background-color:#565656;pointer-events:none;transition:opacity .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1);display:inline;box-shadow:0 1px 6px 0 rgba(0,0,0,.2);position:absolute;word-wrap:break-word;z-index:1059;font-family:'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif}.bx--cc--tooltip.hidden{opacity:0;transition:opacity .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1)}.bx--cc--tooltip .content-box{color:#f3f3f3}.bx--cc--tooltip .content-box .title-tooltip{line-height:16px;font-size:12px;padding:4px;min-width:20px}.bx--cc--tooltip .content-box .datapoint-tooltip,.bx--cc--tooltip .content-box .total-val{display:flex;padding:4px;flex-flow:row nowrap;width:auto;min-width:20px;justify-content:flex-start;align-items:center}.bx--cc--tooltip .content-box .datapoint-tooltip p,.bx--cc--tooltip .content-box .total-val p{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:16px;font-size:12px;display:inline-block;margin:0;padding:0;border:0}.bx--cc--tooltip .content-box .datapoint-tooltip p.label,.bx--cc--tooltip .content-box .total-val p.label{flex:1;margin-right:8px}.bx--cc--tooltip .content-box .datapoint-tooltip p.value,.bx--cc--tooltip .content-box .total-val p.value{width:auto}.bx--cc--tooltip .content-box .total-val{font-weight:600}.bx--cc--tooltip .content-box .total-val .label{margin-left:4px}.bx--cc--tooltip .content-box ul.multi-tooltip{margin:0;padding:0}.bx--cc--tooltip .content-box ul.multi-tooltip li{list-style:none;position:relative}.bx--cc--tooltip .content-box ul.multi-tooltip li:not(:last-child){border-bottom:1px solid #565656}.bx--cc--tooltip .tooltip-color{position:absolute;left:0;top:0;width:4px;height:100%}.bx--cc--tooltip .tooltip-color+p.label{margin-left:4px}g.bx--cc--bubble circle.dot.hovered{fill-opacity:1;transition:all .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1)}g.bx--cc--bubble circle.dot.unfilled{fill:#3d3d3d}g.bx--cc--bubble g.lines path.line{mix-blend-mode:multiply}.bx--cc--line path.line{pointer-events:none;fill:none;stroke-width:1.5}g.bx--cc--scatter circle.dot.hovered{fill-opacity:1;transition:all .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1)}g.bx--cc--scatter circle.dot.unfilled{fill:#3d3d3d;stroke-width:1.5}g.bx--cc--scatter g.lines path.line{mix-blend-mode:multiply}svg.bx--cc--chart-svg{font-family:'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif}svg.bx--cc--chart-svg text{font-size:12px;font-weight:400;fill:#bebebe}.bx--chart-holder{position:relative;display:block;width:100%;height:100%;background-color:#282828}svg.bx--cc--chart-svg{overflow:visible}/*# sourceMappingURL=styles-g90.min.css.map */
1
+ .bx--cc--axes g.axis g.tick text{fill:#bebebe;font-family:'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif}.bx--cc--axes g.axis g.tick line{display:none}.bx--cc--axes g.axis path.domain{stroke:#8c8c8c}.bx--cc--chart-svg g.callouts{stroke:#bebebe}.bx--cc--grid rect.chart-grid-backdrop{fill:#282828;stroke:#565656}.bx--cc--grid g.x.grid g.tick line,.bx--cc--grid g.y.grid g.tick line{pointer-events:none;stroke-width:1px;stroke:#565656}.bx--cc--grid g.x.grid g.tick.active line,.bx--cc--grid g.y.grid g.tick.active line{stroke-dasharray:2px;stroke:#fff}.bx--cc--ruler line.ruler-line{stroke:#fff;stroke-width:1px;stroke-dasharray:2;pointer-events:none}.bx--cc--ruler text.axis-tooltip-text{fill:#fff;dominant-baseline:middle;text-anchor:middle}.bx--cc--zero-line line.domain{stroke:#8c8c8c}.bx--cc--chart-svg svg.layout-child{overflow:visible}g.bx--cc--legend{user-select:none}g.bx--cc--legend g.legend-item rect.checkbox{stroke-width:1px;stroke-opacity:1}g.bx--cc--legend g.legend-item rect.checkbox:not(.active){stroke:#bebebe;fill:#282828}g.bx--cc--legend g.legend-item rect.checkbox:not(.active)~g.check{display:none}g.bx--cc--legend g.legend-item rect.hover-stroke{fill:none;stroke:#0f62fe;stroke-width:2}g.bx--cc--legend g.legend-item g.check>svg path{fill:#282828;stroke:#282828}g.bx--cc--legend g.legend-item text{font-size:12px;fill:#bebebe}g.bx--cc--legend.clickable g.legend-item:hover{cursor:pointer}.bx--cc--title text.title{fill:#f3f3f3;font-size:16px;font-family:'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;font-weight:600}.bx--cc--tooltip{background-color:#565656;pointer-events:none;transition:opacity .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1);display:inline;box-shadow:0 1px 6px 0 rgba(0,0,0,.2);position:absolute;word-wrap:break-word;z-index:1059;font-family:'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif}.bx--cc--tooltip.hidden{opacity:0;transition:opacity .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1)}.bx--cc--tooltip .content-box{color:#f3f3f3}.bx--cc--tooltip .content-box .title-tooltip{line-height:16px;font-size:12px;padding:4px;min-width:20px}.bx--cc--tooltip .content-box .datapoint-tooltip,.bx--cc--tooltip .content-box .total-val{display:flex;padding:4px;flex-flow:row nowrap;width:auto;min-width:20px;justify-content:flex-start;align-items:center}.bx--cc--tooltip .content-box .datapoint-tooltip p,.bx--cc--tooltip .content-box .total-val p{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:16px;font-size:12px;display:inline-block;margin:0;padding:0;border:0}.bx--cc--tooltip .content-box .datapoint-tooltip p.label,.bx--cc--tooltip .content-box .total-val p.label{flex:1;margin-right:8px}.bx--cc--tooltip .content-box .datapoint-tooltip p.value,.bx--cc--tooltip .content-box .total-val p.value{width:auto}.bx--cc--tooltip .content-box .total-val{font-weight:600}.bx--cc--tooltip .content-box .total-val .label{margin-left:4px}.bx--cc--tooltip .content-box ul.multi-tooltip{margin:0;padding:0}.bx--cc--tooltip .content-box ul.multi-tooltip li{list-style:none;position:relative}.bx--cc--tooltip .content-box ul.multi-tooltip li:not(:last-child){border-bottom:1px solid #565656}.bx--cc--tooltip .tooltip-color{position:absolute;left:0;top:0;width:4px;height:100%}.bx--cc--tooltip .tooltip-color+p.label{margin-left:4px}g.bx--cc--bubble circle.dot.hovered{fill-opacity:1;transition:all .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1)}g.bx--cc--bubble circle.dot.unfilled{fill:#3d3d3d}g.bx--cc--bubble g.lines path.line{mix-blend-mode:multiply}.bx--cc--line path.line{pointer-events:none;fill:none;stroke-width:1.5}g.bx--cc--scatter circle.dot.hovered{fill-opacity:1;transition:all .1s;transition-timing-function:cubic-bezier(0.4, 0.14, 0.3, 1)}g.bx--cc--scatter circle.dot.unfilled{fill:#3d3d3d;stroke-width:1.5}g.bx--cc--scatter g.lines path.line{mix-blend-mode:multiply}.bx--cc--radar .blobs path{stroke-width:1.5px}.bx--cc--radar .y-axes path,.bx--cc--radar .x-axes line{stroke-width:1px;stroke:#565656}.bx--cc--radar .x-axes line.hovered{stroke:#fff}svg.bx--cc--chart-svg{font-family:'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif}svg.bx--cc--chart-svg text{font-size:12px;font-weight:400;fill:#bebebe}.bx--chart-holder{position:relative;display:block;width:100%;height:100%;background-color:#282828}svg.bx--cc--chart-svg{overflow:visible}/*# sourceMappingURL=styles-g90.min.css.map */
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["styles/components/_axis.scss","styles/vendor/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/themes/_mixins.scss","styles/components/_callouts.scss","styles/components/_grid.scss","styles/components/_zero-line.scss","styles/components/_layout.scss","styles/components/_legend.scss","styles/vendor/@carbon/colors/scss/mixins.scss","styles/components/_title.scss","styles/components/_tooltip.scss","styles/vendor/@carbon/motion/scss/motion.scss","styles/graphs/_bubble.scss","styles/graphs/_line.scss","styles/graphs/_scatter.scss","styles/_type.scss","styles/_chart-holder.scss","styles/styles.scss"],"names":[],"mappings":"AAKC,iCACC,KCqCU,QDpCV,2EAGD,iCACC,aAGD,iCACC,OCyBQ,QCxCV,8BACC,OD0CW,QE1CX,uCAME,KF6Be,QE3BhB,OF8BQ,QEzBR,sEACC,oBACA,iBACA,OFsBO,QEnBR,oFACC,qBACA,OF0CO,KGhEV,+BACC,OHuCS,QIxCV,oCACC,iBCDD,iBACC,iBAGC,6CACC,iBACA,iBAEA,0DACC,OLkCQ,QKjCR,KL0Bc,QKvBf,kEACC,aAIF,iDACC,UACA,OC2QiB,QD1QjB,eAGD,gDACC,KLWe,QKVf,OLUe,QKPhB,oCACC,eACA,KLYS,QKRX,+CACC,eElCF,0BACC,KPuCW,QOtCX,eACA,iEACA,gBCDD,iBACC,iBRgCS,QQ/BT,oBACA,uBC4CC,2DD1CD,eACA,sCACA,kBACA,qBACA,aACA,2EAEA,wBACC,UACA,uBCiCA,2DD7BD,8BACC,MRkBU,QQhBV,6CACC,iBACA,eACA,YACA,eAGD,0FACC,aACA,YACA,qBACA,WACA,eACA,2BACA,mBAEA,8FACC,mBACA,gBACA,uBACA,iBACA,eACA,qBACA,SACA,UACA,SAEA,0GACC,OACA,iBAGD,0GACC,WAKH,yCACC,gBACA,gDACC,gBAIF,+CACC,SACA,UAEA,kDACC,gBACA,kBAEA,mEAME,gCAOL,gCACC,kBACA,OACA,MACA,UACA,YACA,wCACC,gBEhGF,oCACC,eACA,mBD+CA,2DC3CD,qCACC,KV2BQ,QUxBT,mCACC,wBCdF,wBACC,oBACA,UACA,sDCCC,eACA,mBH+CA,2DG3CD,sCACC,KZ2BQ,QY1BR,iBAGD,oCACC,wBCXF,sBACC,2EAEA,2BACC,eACA,gBACA,KbiCU,Qc3CZ,kBACC,kBACA,cACA,WACA,YACA,iBd+BiB,QejBlB,sBACC","file":"styles-g90.min.css"}
1
+ {"version":3,"sourceRoot":"","sources":["styles/components/_axis.scss","styles/vendor/carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/themes/_mixins.scss","styles/components/_callouts.scss","styles/components/_grid.scss","styles/components/_ruler.scss","styles/vendor/@carbon/colors/scss/mixins.scss","styles/components/_zero-line.scss","styles/components/_layout.scss","styles/components/_legend.scss","styles/components/_title.scss","styles/components/_tooltip.scss","styles/vendor/@carbon/motion/scss/motion.scss","styles/graphs/_bubble.scss","styles/graphs/_line.scss","styles/graphs/_scatter.scss","styles/graphs/_radar.scss","styles/_type.scss","styles/_chart-holder.scss","styles/styles.scss"],"names":[],"mappings":"AAKC,iCACC,KCqCU,QDpCV,2EAGD,iCACC,aAGD,iCACC,OCyBQ,QCxCV,8BACC,OD0CW,QE1CX,uCAME,KF6Be,QE3BhB,OF8BQ,QEzBR,sEACC,oBACA,iBACA,OFsBO,QEnBR,oFACC,qBACA,OF0CO,KG/DT,+BAEE,OC4XiB,KDrXlB,iBACA,mBACA,oBAGD,sCACC,KC+WkB,KD9WlB,yBACA,mBElBF,+BACC,OLuCS,QMxCV,oCACC,iBCDD,iBACC,iBAGC,6CACC,iBACA,iBAEA,0DACC,OPkCQ,QOjCR,KP0Bc,QOvBf,kEACC,aAIF,iDACC,UACA,OH2QiB,QG1QjB,eAGD,gDACC,KPWe,QOVf,OPUe,QOPhB,oCACC,eACA,KPYS,QORX,+CACC,eClCF,0BACC,KRuCW,QQtCX,eACA,iEACA,gBCDD,iBACC,iBTgCS,QS/BT,oBACA,uBC4CC,2DD1CD,eACA,sCACA,kBACA,qBACA,aACA,2EAEA,wBACC,UACA,uBCiCA,2DD7BD,8BACC,MTkBU,QShBV,6CACC,iBACA,eACA,YACA,eAGD,0FACC,aACA,YACA,qBACA,WACA,eACA,2BACA,mBAEA,8FACC,mBACA,gBACA,uBACA,iBACA,eACA,qBACA,SACA,UACA,SAEA,0GACC,OACA,iBAGD,0GACC,WAKH,yCACC,gBACA,gDACC,gBAIF,+CACC,SACA,UAEA,kDACC,gBACA,kBAEA,mEAME,gCAOL,gCACC,kBACA,OACA,MACA,UACA,YACA,wCACC,gBEhGF,oCACC,eACA,mBD+CA,2DC3CD,qCACC,KX2BQ,QWxBT,mCACC,wBCdF,wBACC,oBACA,UACA,sDCCC,eACA,mBH+CA,2DG3CD,sCACC,Kb2BQ,Qa1BR,iBAGD,oCACC,wBCbD,2BACC,mBAGD,wDAEC,iBACA,Od8BQ,Qc3BT,oCAEE,OViXiB,KW3XpB,sBACC,2EAEA,2BACC,eACA,gBACA,KfiCU,QgB3CZ,kBACC,kBACA,cACA,WACA,YACA,iBhB+BiB,QiBjBlB,sBACC","file":"styles-g90.min.css"}