Skip to content

Commit d42d4f5

Browse files
committed
Sync with Kendo UI Professional
1 parent 5d31630 commit d42d4f5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs-aspnet/html-helpers/charts/appearance.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,12 @@ The Charts come with [a set of predefined themes](https://docs.telerik.com/kendo
8888

8989
## Sass Themes
9090

91-
As of the R2 2017 SP1 release, the Chart provides styling options through [Sass-based themes](https://docs.telerik.com/kendo-ui/styles-and-layout/sass-themes). When the theme is set to `inherit`, the Chart reads colors and fonts from the theme variables.
91+
As of the R2 2017 SP1 release, the Chart provides styling options through [Sass-based themes](https://docs.telerik.com/kendo-ui/styles-and-layout/sass-themes). When the theme is set to `sass`, the Chart reads colors and fonts from the theme variables.
9292

9393
```HtmlHelper
9494
@(Html.Kendo().Chart()
9595
.Name("chart")
96-
.Theme("inherit")
96+
.Theme("sass")
9797
.Title("Site Visitors Stats /thousands/")
9898
.Legend(legend => legend
9999
.Position(ChartLegendPosition.Bottom)
@@ -131,7 +131,7 @@ As of the R2 2017 SP1 release, the Chart provides styling options through [Sass-
131131
var categories = new string[] { "Jan", "Feb", "Mar", "Apr", "May", "Jun" };
132132
}
133133
134-
<kendo-chart name="chart" theme="inherit">
134+
<kendo-chart name="chart" theme="sass">
135135
<chart-title text="Site Visitors Stats /thousands/"></chart-title>
136136
<chart-legend position="ChartLegendPosition.Bottom"></chart-legend>
137137
<series-defaults type="ChartSeriesType.Column">

0 commit comments

Comments
 (0)