igniteui-theming 1.0.2 → 1.1.1

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 (42) hide show
  1. package/package.json +1 -1
  2. package/sass/themes/charts/_category-chart-theme.scss +319 -0
  3. package/sass/themes/charts/_data-chart-theme.scss +142 -0
  4. package/sass/themes/charts/_doughnut-chart-theme.scss +81 -0
  5. package/sass/themes/charts/_financial-chart-theme.scss +325 -0
  6. package/sass/themes/charts/_funnel-chart-theme.scss +98 -0
  7. package/sass/themes/charts/_gauge-theme.scss +167 -0
  8. package/sass/themes/charts/_geo-map-theme.scss +53 -0
  9. package/sass/themes/charts/_graph-theme.scss +133 -0
  10. package/sass/themes/charts/_index.scss +12 -0
  11. package/sass/themes/charts/_pie-chart-theme.scss +108 -0
  12. package/sass/themes/charts/_shape-chart-theme.scss +271 -0
  13. package/sass/themes/charts/_sparkline-theme.scss +114 -0
  14. package/sass/themes/charts/_theme.scss +27 -0
  15. package/sass/themes/schemas/_index.scss +35 -0
  16. package/sass/themes/schemas/charts/_index.scss +2 -0
  17. package/sass/themes/schemas/charts/dark/_category-chart.scss +33 -0
  18. package/sass/themes/schemas/charts/dark/_data-chart.scss +27 -0
  19. package/sass/themes/schemas/charts/dark/_doughnut-chart.scss +28 -0
  20. package/sass/themes/schemas/charts/dark/_financial-chart.scss +28 -0
  21. package/sass/themes/schemas/charts/dark/_funnel-chart.scss +28 -0
  22. package/sass/themes/schemas/charts/dark/_gauge.scss +47 -0
  23. package/sass/themes/schemas/charts/dark/_geo-map.scss +31 -0
  24. package/sass/themes/schemas/charts/dark/_graph.scss +27 -0
  25. package/sass/themes/schemas/charts/dark/_index.scss +68 -0
  26. package/sass/themes/schemas/charts/dark/_pie-chart.scss +31 -0
  27. package/sass/themes/schemas/charts/dark/_shape-chart.scss +28 -0
  28. package/sass/themes/schemas/charts/dark/_sparkline.scss +28 -0
  29. package/sass/themes/schemas/charts/light/_category-chart.scss +178 -0
  30. package/sass/themes/schemas/charts/light/_data-chart.scss +60 -0
  31. package/sass/themes/schemas/charts/light/_doughnut-chart.scss +50 -0
  32. package/sass/themes/schemas/charts/light/_financial-chart.scss +140 -0
  33. package/sass/themes/schemas/charts/light/_funnel-chart.scss +48 -0
  34. package/sass/themes/schemas/charts/light/_gauge.scss +132 -0
  35. package/sass/themes/schemas/charts/light/_geo-map.scss +35 -0
  36. package/sass/themes/schemas/charts/light/_graph.scss +86 -0
  37. package/sass/themes/schemas/charts/light/_index.scss +68 -0
  38. package/sass/themes/schemas/charts/light/_pie-chart.scss +51 -0
  39. package/sass/themes/schemas/charts/light/_shape-chart.scss +115 -0
  40. package/sass/themes/schemas/charts/light/_sparkline.scss +71 -0
  41. package/sass/typography/_mixins.scss +26 -0
  42. package/sass/typography/charts/_index.scss +19 -0
@@ -0,0 +1,35 @@
1
+ @use 'sass:map';
2
+ @use './charts/index' as charts;
3
+
4
+ $light-material-schema: map.merge(
5
+ charts.$light-material-schema,
6
+ ()
7
+ );
8
+ $light-bootstrap-schema: map.merge(
9
+ charts.$light-bootstrap-schema,
10
+ ()
11
+ );
12
+ $light-fluent-schema: map.merge(
13
+ charts.$light-fluent-schema,
14
+ ()
15
+ );
16
+ $light-indigo-schema: map.merge(
17
+ charts.$light-indigo-schema,
18
+ ()
19
+ );
20
+ $dark-material-schema: map.merge(
21
+ charts.$dark-material-schema,
22
+ ()
23
+ );
24
+ $dark-bootstrap-schema: map.merge(
25
+ charts.$dark-bootstrap-schema,
26
+ ()
27
+ );
28
+ $dark-fluent-schema: map.merge(
29
+ charts.$dark-fluent-schema,
30
+ ()
31
+ );
32
+ $dark-indigo-schema: map.merge(
33
+ charts.$dark-indigo-schema,
34
+ ()
35
+ );
@@ -0,0 +1,2 @@
1
+ @forward 'light';
2
+ @forward 'dark';
@@ -0,0 +1,33 @@
1
+ /* stylelint-disable max-line-length */
2
+ @use '../light/category-chart' as *;
3
+
4
+ ////
5
+ /// @group schemas
6
+ /// @access public
7
+ /// @author <a href="https://github.com/SisIvanova" target="_blank">Silvia Ivanova</a>
8
+ ////
9
+
10
+ /// Generates a dark category-chart schema based on a mix of $material-category-chart and $base-dark-category-chart
11
+ /// @type {Map}
12
+ /// @requires $material-category-chart
13
+ /// @requires $base-dark-category-chart
14
+ /// @see $default-palette
15
+ $dark-material-category-chart: $material-category-chart;
16
+
17
+ /// Generates a dark fluent category-chart schema based on a mix of $fluent-category-chart and $base-dark-category-chart
18
+ /// @type {Map}
19
+ /// @requires $fluent-category-chart
20
+ /// @requires $base-dark-category-chart
21
+ $dark-fluent-category-chart: $fluent-category-chart;
22
+
23
+ /// Generates a bootstrap category-chart schema based on a mix of $bootstrap-category-chart and $base-dark-category-chart
24
+ /// @type {Map}
25
+ /// @requires $bootstrap-category-chart
26
+ /// @requires $base-dark-category-chart
27
+ $dark-bootstrap-category-chart: $bootstrap-category-chart;
28
+
29
+ /// Generates an indigo category-chart schema based on a mix of $indigo-category-chart and $base-dark-category-chart
30
+ /// @type {Map}
31
+ /// @requires $indigo-category-chart
32
+ /// @requires $base-dark-category-chart
33
+ $dark-indigo-category-chart: $indigo-category-chart;
@@ -0,0 +1,27 @@
1
+ @use '../light/data-chart' as *;
2
+
3
+ ////
4
+ /// @group schemas
5
+ /// @access public
6
+ /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
7
+ ////
8
+
9
+ /// Generates a dark data chart schema.
10
+ /// @type {Map}
11
+ /// @requires $material-data-chart
12
+ $dark-material-data-chart: $material-data-chart;
13
+
14
+ /// Generates a dark fluent data-chart schema.
15
+ /// @type {Map}
16
+ /// @requires $fluent-data-chart
17
+ $dark-fluent-data-chart: $fluent-data-chart;
18
+
19
+ /// Generates a dark bootstrap data-chart schema.
20
+ /// @type {Map}
21
+ /// @requires $bootstrap-data-chart
22
+ $dark-bootstrap-data-chart: $bootstrap-data-chart;
23
+
24
+ /// Generates a dark indigo data-chart schema.
25
+ /// @type {Map}
26
+ /// @requires $indigo-data-chart
27
+ $dark-indigo-data-chart: $indigo-data-chart;
@@ -0,0 +1,28 @@
1
+ @use '../light/doughnut-chart' as *;
2
+
3
+ ////
4
+ /// @group schemas
5
+ /// @access public
6
+ /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
7
+ ////
8
+
9
+ /// Generates a dark doughnut chart schema.
10
+ /// @type {Map}
11
+ /// @requires {function} extend
12
+ /// @see $default-palette
13
+ $dark-material-doughnut-chart: $material-doughnut-chart;
14
+
15
+ /// Generates a dark fluent doughnut-chart schema.
16
+ /// @type {Map}
17
+ /// @requires $fluent-doughnut-chart
18
+ $dark-fluent-doughnut-chart: $fluent-doughnut-chart;
19
+
20
+ /// Generates a dark bootstrap doughnut-chart schema.
21
+ /// @type {Map}
22
+ /// @requires $bootstrap-doughnut-chart
23
+ $dark-bootstrap-doughnut-chart: $bootstrap-doughnut-chart;
24
+
25
+ /// Generates a dark indigo doughnut-chart schema.
26
+ /// @type {Map}
27
+ /// @requires $indigo-doughnut-chart
28
+ $dark-indigo-doughnut-chart: $indigo-doughnut-chart;
@@ -0,0 +1,28 @@
1
+ @use '../light/financial-chart' as *;
2
+
3
+ ////
4
+ /// @group schemas
5
+ /// @access public
6
+ /// @author <a href="https://github.com/didimmova" target="_blank">Dilyana Dimova</a>
7
+ ////
8
+
9
+ /// Generates a dark financial chart schema.
10
+ /// @type {Map}
11
+ /// @requires $material-financial-chart
12
+ /// @see $default-palette
13
+ $dark-material-financial-chart: $material-financial-chart;
14
+
15
+ /// Generates a dark fluent financial-chart schema.
16
+ /// @type {Map}
17
+ /// @requires $fluent-financial-chart
18
+ $dark-fluent-financial-chart: $fluent-financial-chart;
19
+
20
+ /// Generates a dark bootstrap financial-chart schema.
21
+ /// @type {Map}
22
+ /// @requires $bootstrap-financial-chart
23
+ $dark-bootstrap-financial-chart: $bootstrap-financial-chart;
24
+
25
+ /// Generates a dark indigo financial-chart schema.
26
+ /// @type {Map}
27
+ /// @requires $indigo-financial-chart
28
+ $dark-indigo-financial-chart: $indigo-financial-chart;
@@ -0,0 +1,28 @@
1
+ @use '../light/funnel-chart' as *;
2
+
3
+ ////
4
+ /// @group schemas
5
+ /// @access public
6
+ /// @author <a href="https://github.com/desig9stein" target="_blank">Marin Popov</a>
7
+ ////
8
+
9
+ /// Generates a dark funnel chart schema.
10
+ /// @type {Map}
11
+ /// @requires $material-funnel-chart
12
+ /// @see $default-palette
13
+ $dark-material-funnel-chart: $material-funnel-chart;
14
+
15
+ /// Generates a dark fluent funnel-chart schema.
16
+ /// @type {Map}
17
+ /// @requires $fluent-funnel-chart
18
+ $dark-fluent-funnel-chart: $fluent-funnel-chart;
19
+
20
+ /// Generates a dark bootstrap funnel-chart schema.
21
+ /// @type {Map}
22
+ /// @requires $bootstrap-funnel-chart
23
+ $dark-bootstrap-funnel-chart: $bootstrap-funnel-chart;
24
+
25
+ /// Generates a dark indigo funnel-chart schema.
26
+ /// @type {Map}
27
+ /// @requires $ndigo-funnel-chart
28
+ $dark-indigo-funnel-chart: $indigo-funnel-chart;
@@ -0,0 +1,47 @@
1
+ @use '../light/gauge' as *;
2
+
3
+ ////
4
+ /// @group schemas
5
+ /// @access public
6
+ /// @author <a href="https://github.com/SisIvanova" target="_blank">Silvia Ivanova</a>
7
+ ////
8
+
9
+ /// Generates dark gauge schemas.
10
+ /// @type {Map}
11
+ /// @requires $material-linear-gauge
12
+ $dark-material-linear-gauge: $material-linear-gauge;
13
+
14
+ /// Generates dark gauge schemas.
15
+ /// @type {Map}
16
+ /// @requires $material-radial-gauge
17
+ $dark-material-radial-gauge: $material-radial-gauge;
18
+
19
+ /// Generates a dark fluent gauge schema.
20
+ /// @type {Map}
21
+ /// @requires $fluent-linear-gauge
22
+ $dark-fluent-linear-gauge: $fluent-linear-gauge;
23
+
24
+ /// Generates a dark fluent gauge schema.
25
+ /// @type {Map}
26
+ /// @requires $fluent-radial-gauge
27
+ $dark-fluent-radial-gauge: $fluent-radial-gauge;
28
+
29
+ /// Generates a dark bootstrap gauge schema.
30
+ /// @type {Map}
31
+ /// @requires $bootstrap-linear-gauge
32
+ $dark-bootstrap-linear-gauge: $bootstrap-linear-gauge;
33
+
34
+ /// Generates a dark bootstrap gauge schema.
35
+ /// @type {Map}
36
+ /// @requires $bootstrap-radial-gauge
37
+ $dark-bootstrap-radial-gauge: $bootstrap-radial-gauge;
38
+
39
+ /// Generates a dark indigo gauge schema.
40
+ /// @type {Map}
41
+ /// @requires $indigo-linear-gauge
42
+ $dark-indigo-linear-gauge: $indigo-linear-gauge;
43
+
44
+ /// Generates a dark indigo gauge schema.
45
+ /// @type {Map}
46
+ /// @requires $indigo-radial-gauge
47
+ $dark-indigo-radial-gauge: $indigo-radial-gauge;
@@ -0,0 +1,31 @@
1
+ @use '../light/geo-map' as *;
2
+
3
+ ////
4
+ /// @group schemas
5
+ /// @access public
6
+ /// @author <a href="https://github.com/didimmova" target="_blank">Dilyana Dimova</a>
7
+ ////
8
+
9
+ /// Generates a dark base geo map schema.
10
+ /// @type {Map}
11
+ /// @requires $material-geo-map
12
+ /// @see $material-geo-map
13
+ $dark-material-geo-map: $material-geo-map;
14
+
15
+ /// Generates a dark fluent geo map schema.
16
+ /// @type {Map}
17
+ /// @requires $fluent-geo-map
18
+ /// @see $fluent-geo-map
19
+ $dark-fluent-geo-map: $fluent-geo-map;
20
+
21
+ /// Generates a dark bootstrap geo map schema.
22
+ /// @type {Map}
23
+ /// @requires $bootstrap-geo-map
24
+ /// @see $bootstrap-geo-map
25
+ $dark-bootstrap-geo-map: $bootstrap-geo-map;
26
+
27
+ /// Generates a dark indigo geo map schema.
28
+ /// @type {Map}
29
+ /// @requires $indigo-geo-map
30
+ /// @see $indigo-geo-map
31
+ $dark-indigo-geo-map: $indigo-geo-map;
@@ -0,0 +1,27 @@
1
+ @use '../light/graph' as *;
2
+
3
+ ////
4
+ /// @group schemas
5
+ /// @access public
6
+ /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
7
+ ////
8
+
9
+ /// Generates a dark graph schema.
10
+ /// @type {Map}
11
+ /// @requires $material-graph
12
+ $dark-material-graph: $material-graph;
13
+
14
+ /// Generates a dark fluent graph schema.
15
+ /// @type {Map}
16
+ /// @requires $fluent-graph
17
+ $dark-fluent-graph: $fluent-graph;
18
+
19
+ /// Generates a dark bootstrap graph schema.
20
+ /// @type {Map}
21
+ /// @requires $bootstrap-graph
22
+ $dark-bootstrap-graph: $bootstrap-graph;
23
+
24
+ /// Generates a dark indigo graph schema.
25
+ /// @type {Map}
26
+ /// @requires $indigo-graph
27
+ $dark-indigo-graph: $indigo-graph;
@@ -0,0 +1,68 @@
1
+ @use './category-chart' as *;
2
+ @use './data-chart' as *;
3
+ @use './doughnut-chart' as *;
4
+ @use './financial-chart' as *;
5
+ @use './funnel-chart' as *;
6
+ @use './gauge' as *;
7
+ @use './geo-map' as *;
8
+ @use './graph' as *;
9
+ @use './pie-chart' as *;
10
+ @use './shape-chart' as *;
11
+ @use './sparkline' as *;
12
+
13
+ $dark-material-schema: (
14
+ category-chart: $dark-material-category-chart,
15
+ data-chart: $dark-material-data-chart,
16
+ doughnut-chart: $dark-material-doughnut-chart,
17
+ financial-chart: $dark-material-financial-chart,
18
+ funnel-chart: $dark-material-funnel-chart,
19
+ linear-gauge: $dark-material-linear-gauge,
20
+ radial-gauge: $dark-material-radial-gauge,
21
+ geo-map: $dark-material-geo-map,
22
+ bullet-graph: $dark-material-graph,
23
+ pie-chart: $dark-material-pie-chart,
24
+ shape-chart: $dark-material-shape-chart,
25
+ sparkline: $dark-material-sparkline,
26
+ );
27
+ $dark-bootstrap-schema: (
28
+ category-chart: $dark-bootstrap-category-chart,
29
+ data-chart: $dark-bootstrap-data-chart,
30
+ doughnut-chart: $dark-bootstrap-doughnut-chart,
31
+ financial-chart: $dark-bootstrap-financial-chart,
32
+ funnel-chart: $dark-bootstrap-funnel-chart,
33
+ linear-gauge: $dark-bootstrap-linear-gauge,
34
+ radial-gauge: $dark-bootstrap-radial-gauge,
35
+ geo-map: $dark-bootstrap-geo-map,
36
+ bullet-graph: $dark-bootstrap-graph,
37
+ pie-chart: $dark-bootstrap-pie-chart,
38
+ shape-chart: $dark-bootstrap-shape-chart,
39
+ sparkline: $dark-bootstrap-sparkline,
40
+ );
41
+ $dark-fluent-schema: (
42
+ category-chart: $dark-fluent-category-chart,
43
+ data-chart: $dark-fluent-data-chart,
44
+ doughnut-chart: $dark-fluent-doughnut-chart,
45
+ financial-chart: $dark-fluent-financial-chart,
46
+ funnel-chart: $dark-fluent-funnel-chart,
47
+ linear-gauge: $dark-fluent-linear-gauge,
48
+ radial-gauge: $dark-fluent-radial-gauge,
49
+ geo-map: $dark-fluent-geo-map,
50
+ bullet-graph: $dark-fluent-graph,
51
+ pie-chart: $dark-fluent-pie-chart,
52
+ shape-chart: $dark-fluent-shape-chart,
53
+ sparkline: $dark-fluent-sparkline,
54
+ );
55
+ $dark-indigo-schema: (
56
+ category-chart: $dark-indigo-category-chart,
57
+ data-chart: $dark-indigo-data-chart,
58
+ doughnut-chart: $dark-indigo-doughnut-chart,
59
+ financial-chart: $dark-indigo-financial-chart,
60
+ funnel-chart: $dark-indigo-funnel-chart,
61
+ linear-gauge: $dark-indigo-linear-gauge,
62
+ radial-gauge: $dark-indigo-radial-gauge,
63
+ geo-map: $dark-indigo-geo-map,
64
+ bullet-graph: $dark-indigo-graph,
65
+ pie-chart: $dark-indigo-pie-chart,
66
+ shape-chart: $dark-indigo-shape-chart,
67
+ sparkline: $dark-indigo-sparkline,
68
+ );
@@ -0,0 +1,31 @@
1
+ @use '../light/pie-chart' as *;
2
+
3
+ ////
4
+ /// @group schemas
5
+ /// @access public
6
+ /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
7
+ ////
8
+
9
+ /// Generates a dark base pie chart schema.
10
+ /// @type {Map}
11
+ /// @requires $material-pie-chart
12
+ /// @see $material-pie-chart
13
+ $dark-material-pie-chart: $material-pie-chart;
14
+
15
+ /// Generates a dark fluent pie chart schema.
16
+ /// @type {Map}
17
+ /// @requires $fluent-pie-chart
18
+ /// @see $fluent-pie-chart
19
+ $dark-fluent-pie-chart: $fluent-pie-chart;
20
+
21
+ /// Generates a dark bootstrap pie chart schema.
22
+ /// @type {Map}
23
+ /// @requires $bootstrap-pie-chart
24
+ /// @see $bootstrap-pie-chart
25
+ $dark-bootstrap-pie-chart: $bootstrap-pie-chart;
26
+
27
+ /// Generates a dark indigo pie chart schema.
28
+ /// @type {Map}
29
+ /// @requires $indigo-pie-chart
30
+ /// @see $indigo-pie-chart
31
+ $dark-indigo-pie-chart: $indigo-pie-chart;
@@ -0,0 +1,28 @@
1
+ @use '../light/shape-chart' as *;
2
+
3
+ ////
4
+ /// @group schemas
5
+ /// @access public
6
+ /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
7
+ ////
8
+
9
+ /// Generates a dark shape chart schema.
10
+ /// @type {Map}
11
+ /// @requires $material-shape-chart
12
+ /// @see $default-palette
13
+ $dark-material-shape-chart: $material-shape-chart;
14
+
15
+ /// Generates a dark fluent shape-chart schema.
16
+ /// @type {Map}
17
+ /// @requires $fluent-shape-chart
18
+ $dark-fluent-shape-chart: $fluent-shape-chart;
19
+
20
+ /// Generates a dark bootstrap shape-chart schema.
21
+ /// @type {Map}
22
+ /// @requires $bootstrap-shape-chart
23
+ $dark-bootstrap-shape-chart: $bootstrap-shape-chart;
24
+
25
+ /// Generates a dark indigo shape-chart schema.
26
+ /// @type {Map}
27
+ /// @requires $indigo-shape-chart
28
+ $dark-indigo-shape-chart: $indigo-shape-chart;
@@ -0,0 +1,28 @@
1
+ @use '../light/sparkline' as *;
2
+
3
+ ////
4
+ /// @group schemas
5
+ /// @access public
6
+ /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
7
+ ////
8
+
9
+ /// Generates a dark sparkline schema.
10
+ /// @type {Map}
11
+ /// @requires $material-sparkline
12
+ /// @see $default-palette
13
+ $dark-material-sparkline: $material-sparkline;
14
+
15
+ /// Generates a dark fluent sparkline schema.
16
+ /// @type {Map}
17
+ /// @requires $fluent-sparkline
18
+ $dark-fluent-sparkline: $fluent-sparkline;
19
+
20
+ /// Generates a dark bootstrap sparkline schema.
21
+ /// @type {Map}
22
+ /// @requires $bootstrap-sparkline
23
+ $dark-bootstrap-sparkline: $bootstrap-sparkline;
24
+
25
+ /// Generates a dark indigo sparkline schema.
26
+ /// @type {Map}
27
+ /// @requires $indigo-sparkline
28
+ $dark-indigo-sparkline: $indigo-sparkline;
@@ -0,0 +1,178 @@
1
+ /* stylelint-disable max-line-length */
2
+ ////
3
+ /// @group schemas
4
+ /// @access public
5
+ /// @author <a href="https://github.com/SisIvanova" target="_blank">Silvia Ivanova</a>
6
+ ////
7
+
8
+ /// Generates a material category chart schema.
9
+ /// @type {Map}
10
+ /// @property {List} margin [null] - Sets the margin (top, right, bottom, left) of the chart content.
11
+ /// @property {List} brushes [series] - Defines the palette from which automatically assigned series brushes colors are selected.
12
+ /// @property {List} marker-brushes [series]- Defines the palette from which automatically assigned series marker brushes colors are selected.
13
+ /// @property {List} negative-brushes [hsl(347, 82%, 64%)] - Defines the palette used for coloring negative items in a chart type with contextual coloring, such as Waterfall.
14
+ /// @property {List} negative-outlines [hsl(347, 82%, 64%)] - Defines the brushes used for drawing negative elements in a chart type with contextual coloring, such as Waterfall.
15
+ /// @property {List} outlines [series] - Defines the palette from which automatically assigned series outline colors are selected.
16
+ /// @property {List} marker-outlines [series] - Defines the palette from which automatically assigned series marker outline colors are selected.
17
+ /// @property {String} title-alignment [null] - The horizontal alignment to use for the title.
18
+ /// @property {List} title-margin [null] - Sets the margin (top, right, bottom, left) of the chart title.
19
+ /// @property {Color} title-text-color [color: ('gray', 900)] - Sets the color of the chart title.
20
+ /// @property {String} title-text-style [null] - Sets the CSS font property of the chart title.
21
+ /// @property {List} subtitle-margin [null] - Sets the margins (top, right, bottom, left) of the chart subtitle.
22
+ /// @property {String} subtitle-alignment [null] - The horizontal alignment to use for the subtitle.
23
+ /// @property {Color} subtitle-text-color [color: ('gray', 700)] - Sets the color of the chart subtitle.
24
+ /// @property {String} subtitle-text-style [null] - Sets the CSS font property of the chart subtitle.
25
+ /// @property {Number} thickness [null] - Sets the thickness for all series in a chart.
26
+ /// @property {List} trend-line-brushes [series] - Defines the palette of brushes used for coloring trend lines in a chart.
27
+ /// @property {Number} trend-line-thickness [null] - Sets the thickness of the trend lines in a chart of type point, line, spline or bubble.
28
+ /// @property {List} x-axis-label-margin [null] - Sets the margin (top, right, bottom, left) of labels on the X-axis.
29
+ /// @property {Color} x-axis-label-text-color [color: ('gray', 700)] - Sets the color of labels on the X-axis.
30
+ /// @property {String} x-axis-label-text-style [null] - Sets the CSS font property for labels on X-axis.
31
+ /// @property {String} x-axis-label-vertical-alignment [null] - Sets the vertical alignment of X-axis labels.
32
+ /// @property {Color} x-axis-major-stroke [null] - Sets the color to apply to major gridlines along the X-axis.
33
+ /// @property {Number} x-axis-major-stroke-thickness [null] - Sets the thickness to apply to major gridlines along the X-axis.
34
+ /// @property {Color} x-axis-minor-stroke [null] - Sets the color to apply to minor gridlines along the X-axis.
35
+ /// @property {Number} x-axis-minor-stroke-thickness [null] - Sets the thickness to apply to minor gridlines along the X-axis.
36
+ /// @property {Color} x-axis-strip [null] - Sets the color to apply to stripes along the X-axis.
37
+ /// @property {Color} x-axis-stroke [color: ('gray', 500)] - Sets the color to apply to the X-axis line.
38
+ /// @property {Number} x-axis-stroke-thickness [null] - Sets the thickness to apply to the X-axis line.
39
+ /// @property {Number} x-axis-tick-length [null] - Sets the length of tickmarks along the X-axis.
40
+ /// @property {Color} x-axis-tick-stroke [color: ('gray', 500)] - Sets the color to apply to tickmarks along the X-axis.
41
+ /// @property {Number} x-axis-tick-stroke-thickness [null] - Sets the thickness to apply to tickmarks along the X-axis.
42
+ /// @property {String} x-axis-title-alignment [null] - Sets the horizontal alignment of the X-axis title.
43
+ /// @property {List} x-axis-title-margin [null] - Sets the margin (top, right, bottom, left) of a title on the X-axis.
44
+ /// @property {Color} x-axis-title-text-color [color: ('gray', 900)] - Sets the color of the title on the X-axis.
45
+ /// @property {String} x-axis-title-text-style [null] - Sets the CSS font property for the title on the X-axis.
46
+ /// @property {List} y-axis-label-margin [null] - Sets the margin (top, right, bottom, left) of labels on the Y-axis.
47
+ /// @property {Color} y-axis-label-text-color [color: ('gray', 700)] - Sets the color of labels on the Y-axis.
48
+ /// @property {String} y-axis-label-text-style [null] - Sets the CSS font property for labels on Y-axis.
49
+ /// @property {String} y-axis-label-vertical-alignment [null] - Sets the vertical alignment of Y-axis labels.
50
+ /// @property {Color} y-axis-major-stroke [color: ('gray', 300)] - Sets the color to apply to major gridlines along the y-axis.
51
+ /// @property {Number} y-axis-major-stroke-thickness [null] - Sets the thickness to apply to major gridlines along the Y-axis.
52
+ /// @property {Color} y-axis-minor-stroke [null] - Sets the color to apply to minor gridlines along the Y-axis.
53
+ /// @property {Number} y-axis-minor-stroke-thickness [null] - Sets the thickness to apply to minor gridlines along the Y-axis.
54
+ /// @property {Color} y-axis-strip [null] - Sets the color to apply to stripes along the Y-axis.
55
+ /// @property {Color} y-axis-stroke [null] - Sets the color to apply to the Y-axis line.
56
+ /// @property {Number} y-axis-stroke-thickness [null] - Sets the thickness to apply to the Y-axis line.
57
+ /// @property {String} y-axis-title-alignment [null] - Sets the horizontal alignment of the Y-axis title.
58
+ /// @property {List} y-axis-title-margin [null] - Sets the margin (top, right, bottom, left) of a title on the Y-axis.
59
+ /// @property {Color} y-axis-title-text-color [color: ('gray', 900)] - Sets the color of a title on the Y-axis.
60
+ /// @property {String} y-axis-title-text-style [null] - Sets the CSS font property for the title on the Y-axis.
61
+ /// @property {Number} y-axis-tick-length [null] - Sets the length of tickmarks along the Y-axis.
62
+ /// @property {Color} y-axis-tick-stroke [color: ('gray', 500)] - Sets the color to apply to tickmarks along the Y-axis.
63
+ /// @property {Number} y-axis-tick-stroke-thickness [null] - Sets the thickness to apply to tickmarks along the Y-axis.
64
+ /// @see $default-palette
65
+ $material-category-chart: (
66
+ 'margin': (
67
+ expand-shorthand: (null)
68
+ ),
69
+ 'brushes': series,
70
+ 'marker-brushes': series,
71
+ 'negative-brushes': hsl(347deg 82% 64%),
72
+ 'outlines': series,
73
+ 'marker-outlines': series,
74
+ 'negative-outlines': hsl(347deg 82% 64%),
75
+ 'title-alignment': null,
76
+ 'title-margin': (
77
+ expand-shorthand: (null),
78
+ map-keys-prefix: 'title'
79
+ ),
80
+ 'title-text-color': (
81
+ color: ('gray', 900),
82
+ ),
83
+ 'title-text-style': null,
84
+ 'subtitle-margin': (
85
+ expand-shorthand: (null),
86
+ map-keys-prefix: 'subtitle'
87
+ ),
88
+ 'subtitle-alignment': null,
89
+ 'subtitle-text-color': (
90
+ color: ('gray', 700),
91
+ ),
92
+ 'subtitle-text-style': null,
93
+ 'thickness': null,
94
+ 'trend-line-brushes': series,
95
+ 'trend-line-thickness': null,
96
+ 'x-axis-label-margin': (
97
+ expand-shorthand: (null),
98
+ map-keys-prefix: 'x-axis-label'
99
+ ),
100
+ 'x-axis-label-text-color': (
101
+ color: ('gray', 700),
102
+ ),
103
+ 'x-axis-label-text-style': null,
104
+ 'x-axis-label-vertical-alignment': null,
105
+ 'x-axis-major-stroke': null,
106
+ 'x-axis-major-stroke-thickness': null,
107
+ 'x-axis-minor-stroke': null,
108
+ 'x-axis-minor-stroke-thickness': null,
109
+ 'x-axis-strip': null,
110
+ 'x-axis-stroke': (
111
+ color: ('gray', 500),
112
+ ),
113
+ 'x-axis-stroke-thickness': null,
114
+ 'x-axis-tick-length': null,
115
+ 'x-axis-tick-stroke': (
116
+ color: ('gray', 500),
117
+ ),
118
+ 'x-axis-tick-stroke-thickness': null,
119
+ 'x-axis-title-alignment': null,
120
+ 'x-axis-title-margin': (
121
+ expand-shorthand: (null),
122
+ map-keys-prefix: 'x-axis-title'
123
+ ),
124
+ 'x-axis-title-text-color': (
125
+ color: ('gray', 900),
126
+ ),
127
+ 'x-axis-title-text-style': null,
128
+ 'y-axis-label-margin': (
129
+ expand-shorthand: (null),
130
+ map-keys-prefix: 'y-axis-label'
131
+ ),
132
+ 'y-axis-label-text-color': (
133
+ color: ('gray', 700),
134
+ ),
135
+ 'y-axis-label-text-style': null,
136
+ 'y-axis-label-vertical-alignment': null,
137
+ 'y-axis-major-stroke': (
138
+ color: ('gray', 300),
139
+ ),
140
+ 'y-axis-major-stroke-thickness': null,
141
+ 'y-axis-minor-stroke': null,
142
+ 'y-axis-minor-stroke-thickness': null,
143
+ 'y-axis-strip': null,
144
+ 'y-axis-stroke': null,
145
+ 'y-axis-stroke-thickness': null,
146
+ 'y-axis-title-alignment': null,
147
+ 'y-axis-title-margin': (
148
+ expand-shorthand: (null),
149
+ map-keys-prefix: 'y-axis-title'
150
+ ),
151
+ 'y-axis-title-text-color': (
152
+ color: ('gray', 900),
153
+ ),
154
+ 'y-axis-title-text-style': null,
155
+ 'y-axis-tick-length': null,
156
+ 'y-axis-tick-stroke': (
157
+ color: ('gray', 500),
158
+ ),
159
+ 'y-axis-tick-stroke-thickness': null
160
+ );
161
+
162
+ /// Generates a fluent category-chart schema.
163
+ /// @type {Map}
164
+ /// @requires {function} extend
165
+ /// @requires {Map} $material-category-chart
166
+ $fluent-category-chart: $material-category-chart;
167
+
168
+ /// Generates a bootstrap category-chart schema.
169
+ /// @type {Map}
170
+ /// @requires {function} extend
171
+ /// @requires {Map} $material-category-chart
172
+ $bootstrap-category-chart: $material-category-chart;
173
+
174
+ /// Generates an indigo category-chart schema.
175
+ /// @type {Map}
176
+ /// @requires {function} extend
177
+ /// @requires {Map} $material-category-chart
178
+ $indigo-category-chart: $material-category-chart;