Skip to content

Commit a6be81c

Browse files
committed
refactor(themes): update chart themes docs
1 parent 93bde60 commit a6be81c

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

projects/igniteui-angular/src/lib/core/styles/components/charts/_data-chart-theme.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
/// @param {List} $marker-outlines [null] - Defines the palette from which automatically assigned marker outlines are selected.
1818
/// @param {Color} $plot-area-background [null] - Sets the brush used as the background for the current Chart object's plot area.
1919
/// @param {String} $title-horizontal-alignment [null] - The horizontal alignment to use for the title. Valid options are 'left', 'center', and 'right';
20+
/// @param {String} $subtitle-horizontal-alignment [null] - The horizontal alignment to use for the subtitle. Valid options are 'left', 'center', and 'right';
2021
/// @requires $default-palette
2122
/// @requires $light-schema
2223
/// @requires apply-palette
@@ -41,6 +42,7 @@
4142
$marker-outlines: null,
4243
$plot-area-background: null,
4344
$title-horizontal-alignment: null,
45+
$subtitle-horizontal-alignment: null,
4446
) {
4547
$name: 'data-chart';
4648
$chart-schema: ();
@@ -89,6 +91,7 @@
8991
marker-outlines: $marker-outlines,
9092
plot-area-background: $plot-area-background,
9193
title-horizontal-alignment: $title-horizontal-alignment,
94+
subtitle-horizontal-alignment: $subtitle-horizontal-alignment,
9295
)
9396
);
9497
}

projects/igniteui-angular/src/lib/core/styles/components/charts/_financial-chart-theme.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
////
22
/// @group themes
3-
/// @access public
3+
/// @access private
44
/// @author <a href="https://github.com/didimmova" target="_blank">Dilyana Dimova</a>
55
////
66

projects/igniteui-angular/src/lib/core/styles/components/charts/_geo-map-theme.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
////
22
/// @group themes
3-
/// @access public
3+
/// @access private
44
/// @author <a href="https://github.com/didimmova" target="_blank">Dilyana Dimova</a>
55
////
66

projects/igniteui-angular/src/lib/core/styles/themes/schemas/light/_data-chart.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
/// @property {List} marker-outlines [series] - Defines the palette from which automatically assigned marker outlines are selected.
2020
/// @property {Color} plot-area-background [igx-color: ('surface', 500)] - Sets the brush used as the background for the current Chart object's plot area.
2121
/// @property {String} title-horizontal-alignment [null] - The horizontal alignment to use for the title.
22+
/// @property {String} subtitle-horizontal-alignment [null] - The horizontal alignment to use for the subtitle.
2223
/// @see $default-palette
2324
$_light-data-chart: extend(
2425
(
@@ -49,6 +50,8 @@ $_light-data-chart: extend(
4950
),
5051

5152
'title-horizontal-alignment': null,
53+
54+
'subtitle-horizontal-alignment': null,
5255
)
5356
);
5457

0 commit comments

Comments
 (0)