Skip to content

Commit 5379bcd

Browse files
radar charts (#167)
* docs(chart): radar area chart * docs(chart): radar column chart * docs(chart): radar line series * chore(chart): improve radar series urls * chore(chart): improve formatting of intro sentences to types charts creation * chore(chart): fix radar line series style setting location
1 parent 453dc4f commit 5379bcd

File tree

19 files changed

+366
-28
lines changed

19 files changed

+366
-28
lines changed

_config.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,9 +393,12 @@ intro_columns:
393393
"Donut Charts": "components/chart/types/donut"
394394
"Bubble Charts": "components/chart/types/bubble"
395395
"Scatter Charts": "components/chart/types/scatter"
396-
"ScatterLine Charts": "components/chart/types/scatterline"
396+
"Scatter Line Charts": "components/chart/types/scatterline"
397397
"Candlestick Charts": "chart-types-candlestick"
398398
"OHLC Charts": "chart-types-ohlc"
399+
"Radar Area Charts": "chart-types-radararea"
400+
"Radar Column Charts": "chart-types-radarcolumn"
401+
"Radar Line Charts": "chart-types-radarline"
399402
"Stock Chart": "stockchart-overview"
400403

401404
-

_contentTemplates/chart/link-to-basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ You can control how transparent the series fill is through the `Opacity` propert
131131

132132

133133
#tip-look-for-nested-tags
134-
>tip To customize the chart, look for nested tags and heir properties - the inner tags will contain their parent tag name and add specifics to its end. For example, the `ChartSeries` tag has a `ChartSeriesLabels` tag that exposes configuration otions and more child tags.
134+
>tip To customize the chart, look for nested tags and their properties - the inner tags will contain their parent tag name and add specifics to its end. For example, the `ChartSeries` tag has a `ChartSeriesLabels` tag that exposes configuration options and more child tags.
135135
#end
136136

137137

components/chart/types/area.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ position: 0
1010

1111
# Area Chart
1212

13-
An <a href="https://www.telerik.com/blazor-ui/area-chart" target="_blank">Blazor Area chart</a> shows the data as continuous lines that pass through points defined by their items' values. The portion of the graph beneath the lines is filled with a particular color for every series. Colors in an Area chart can be useful for emphasizing changes in values from several sets of similar data. A colored background will clearly visualize the differences.
13+
The <a href="https://www.telerik.com/blazor-ui/area-chart" target="_blank">Blazor Area chart</a> shows the data as continuous lines that pass through points defined by their items' values. The portion of the graph beneath the lines is filled with a particular color for every series. Colors in an Area chart can be useful for emphasizing changes in values from several sets of similar data. A colored background will clearly visualize the differences.
1414

1515

1616
An Area chart emphasizes the volume of money, data or any other unit that the given series has encompassed. When backgrounds are semi-transparent, it lets the user clearly see where different sets of data overlap.
@@ -21,7 +21,7 @@ An Area chart emphasizes the volume of money, data or any other unit that the gi
2121

2222
@[template](/_contentTemplates/chart/link-to-basics.md#understand-basics-and-databinding-first)
2323

24-
To create an area chart:
24+
#### To create an area chart:
2525

2626
1. add a `ChartSeries` to the `ChartSeriesItems` collection
2727
2. set its `Type` property to `ChartSeriesType.Area`

components/chart/types/bar.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ position: 0
1010

1111
# Bar Chart
1212

13-
A <a href="https://www.telerik.com/blazor-ui/bar-chart" target="_blank">Blazor Bar chart</a> displays data as horizontal bars whose lengths vary according to their value. You can use a Bar chart to show a comparison between several sets of data (for example, summaries of sales data for different time periods). Each series is automatically colored differently for easier reading.
13+
The <a href="https://www.telerik.com/blazor-ui/bar-chart" target="_blank">Blazor Bar chart</a> displays data as horizontal bars whose lengths vary according to their value. You can use a Bar chart to show a comparison between several sets of data (for example, summaries of sales data for different time periods). Each series is automatically colored differently for easier reading.
1414

1515
>caption Bar chart. Results from the first code snippet below
1616
1717
![](images/basic-bar-chart.png)
1818

1919
@[template](/_contentTemplates/chart/link-to-basics.md#understand-basics-and-databinding-first)
2020

21-
To create a bar chart:
21+
#### To create a bar chart:
2222

2323
1. add a `ChartSeries` to the `ChartSeriesItems` collection
2424
2. set its `Type` property to `ChartSeriesType.Bar`

components/chart/types/bubble.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ position: 0
1010

1111
# Bubble Chart
1212

13-
A <a href="https://www.telerik.com/blazor-ui/bubble-chart" target="_blank">Blazor Bubble chart</a> shows the data as points with coordinates and size defined by their items' values. You might think of a Bubble chart as a variation of the [Scatter chart]({%slug components/chart/types/scatter%}), in which the data points are replaced with bubbles. This allows a Bubble chart to display three dimensional data — two values for the items' coordinates and one for their size.
13+
The <a href="https://www.telerik.com/blazor-ui/bubble-chart" target="_blank">Blazor Bubble chart</a> shows the data as points with coordinates and size defined by their items' values. You might think of a Bubble chart as a variation of the [Scatter chart]({%slug components/chart/types/scatter%}), in which the data points are replaced with bubbles. This allows a Bubble chart to display three dimensional data — two values for the items' coordinates and one for their size.
1414

1515
A Bubble chart is useful for visualizing different scientific relationships (e.g, economical, social, etc.). This chart type's x-axis is also numerical and does not require items.
1616

@@ -20,7 +20,7 @@ A Bubble chart is useful for visualizing different scientific relationships (e.g
2020

2121
@[template](/_contentTemplates/chart/link-to-basics.md#understand-basics-and-databinding-first)
2222

23-
To create a bubble chart:
23+
#### To create a bubble chart:
2424

2525
1. add a `ChartSeries` to the `ChartSeriesItems` collection
2626
2. set its `Type` property to `ChartSeriesType.Bubble`

components/chart/types/candlestick.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ position: 0
1010

1111
# Candlestick Chart
1212

13-
A **Candlestick** chart shows data for the movement of the price of a financial unit. It consists of a bar (the candle), representing the open and close values, and vertical lines, the candlesticks, which illustrate the highest and lowest values.
13+
The **Candlestick** chart shows data for the movement of the price of a financial unit. It consists of a bar (the candle), representing the open and close values, and vertical lines, the candlesticks, which illustrate the highest and lowest values.
1414

1515
>caption Candlestick chart. Results from the first code snippet below
1616
1717
![](images/basic-candlestick-chart.png)
1818

1919
@[template](/_contentTemplates/chart/link-to-basics.md#understand-basics-and-databinding-first)
2020

21-
To create a candlestick chart:
21+
#### To create a candlestick chart:
2222

2323
1. add a `ChartSeries` to the `ChartSeriesItems` collection
2424
2. set its `Type` property to `ChartSeriesType.Candlestick`

components/chart/types/column.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ position: 0
1010

1111
# Column Chart
1212

13-
A <a href="https://www.telerik.com/blazor-ui/column-chart" target="_blank">Blazor Column chart</a> displays data as vertical bars whose heights vary according to their value. You can use a Column chart to show a comparison between several sets of data (for example, summaries of sales data for different time periods). Each series is automatically colored differently for easier reading.
13+
The <a href="https://www.telerik.com/blazor-ui/column-chart" target="_blank">Blazor Column chart</a> displays data as vertical bars whose heights vary according to their value. You can use a Column chart to show a comparison between several sets of data (for example, summaries of sales data for different time periods). Each series is automatically colored differently for easier reading.
1414

1515
>caption Column chart. Results from the first code snippet below
1616
1717
![](images/basic-column-chart.png)
1818

1919
@[template](/_contentTemplates/chart/link-to-basics.md#understand-basics-and-databinding-first)
2020

21-
To create a column chart:
21+
#### To create a column chart:
2222

2323
1. add a `ChartSeries` to the `ChartSeriesItems` collection
2424
2. set its `Type` property to `ChartSeriesType.Column`
@@ -59,20 +59,20 @@ Column series
5959

6060
## Column Chart Specific Appearance Settings
6161

62-
### Markers
62+
### Labels
6363

64-
Each data item is denoted with a marker (label). You can control and customize them through the `< ChartCategoryAxisLabels />` and its children tags.
64+
Each data item is decorated with a text label. You can control and customize them through the `<ChartCategoryAxisLabels />` and its children tags.
6565

66-
* `Visible` - hide all markers by setting this parameter to `false`.
67-
* `Step` - renders every n-th marker, where n is the value(double number) passed to the parameter.
68-
* `Skip` - skips the first n markers, where n is the value(double number) passed to the parameter.
69-
* `Angle` - rotates the markers with the desired angle by n degrees, where n is the value passed to the parameter. It can take positive and negative numbers. To set this parameter use the `< ChartCategoryAxisLabelsRotation />` child tag.
66+
* `Visible` - hide all labels by setting this parameter to `false`.
67+
* `Step` - renders every n-th labels, where n is the value(double number) passed to the parameter.
68+
* `Skip` - skips the first n labels, where n is the value (double number) passed to the parameter.
69+
* `Angle` - rotates the labels with the desired angle by n degrees, where n is the value passed to the parameter. It can take positive and negative numbers. To set this parameter use the `< ChartCategoryAxisLabelsRotation />` child tag.
7070

7171
To rotate the markers use the `ChartCategoryAxisLabelsRotation` child tag and set its `Angle` parameter. It can take positive and negative numbers as value.
7272

7373
### Color
7474

75-
The color of a series is controlled through the `Color` property that can take any valid CSS color (for example, `#abcdef`, `#f00`, or `blue`). The color control the fill color of the area.
75+
The color of a series is controlled through the `Color` property that can take any valid CSS color (for example, `#abcdef`, `#f00`, or `blue`).
7676

7777
@[template](/_contentTemplates/chart/link-to-basics.md#color-field-bar-column)
7878

components/chart/types/donut.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The <a href="https://www.telerik.com/blazor-ui/donut-chart" target="_blank">Blaz
1818

1919
@[template](/_contentTemplates/chart/link-to-basics.md#understand-basics-and-databinding-first)
2020

21-
To create a donut chart:
21+
#### To create a donut chart:
2222

2323
1. add a `ChartSeries` to the `ChartSeriesItems` collection
2424
2. set its `Type` property to `ChartSeriesType.Donut`
22.1 KB
Loading
20.7 KB
Loading

0 commit comments

Comments
 (0)