Skip to content

Commit 324d0d7

Browse files
Merge pull request #1797 from IgniteUI/mt/fixing-markdown-rules
fixing-markdown-rules
2 parents c244cf8 + b752dfa commit 324d0d7

29 files changed

+64
-85
lines changed

doc/en/components/charts/features/chart-markers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace: Infragistics.Controls.Charts
1111

1212
In {ProductName}, markers are visual elements that display the values of data points in the chart's plot area. Markers help your end-users immediately identify a data point's value even if the value falls between major or minor grid lines.
1313

14-
# {Platform} Chart Marker Example
14+
## {Platform} Chart Marker Example
1515

1616
In the following example, the [Line Chart](../types/line-chart.md) is comparing the generation of renewable electricity for the countries Europe, China, and USA over the years of 2009 to 2019 with markers enabled by setting the `MarkerType` property to `Circle` enum value.
1717

@@ -23,7 +23,7 @@ The colors of the markers are also managed by setting the `MarkerBrushes` and `M
2323

2424
<div class="divider--half"></div>
2525

26-
# {Platform} Chart Marker Templates
26+
## {Platform} Chart Marker Templates
2727

2828
In addition to marker properties, you can implement your own marker by setting a function to the `MarkerTemplate` property of a series rendered in the `CategoryChart` control as it is demonstrated in example below.
2929

doc/en/components/charts/features/chart-trendlines.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Trendlines are off by default, but you can enable them by setting the `TrendLine
1515

1616
The trendlines also have the ability to have a dash array applied to them once enabled. This is done by setting the `TrendLineDashArray` property to an array of numbers. The numeric array describes the length of the dashes of the trendline.
1717

18-
# {Platform} Chart Trendlines Example
18+
## {Platform} Chart Trendlines Example
1919

2020
The following sample depicts a `FinancialChart` showing the stock trend of Microsoft between 2013 and 2017 with a **QuinticFit** trendline initially applied. There is a drop-down that will allow you to change the type of trendline that is applied, and all possible trendline types are listed within that drop-down.
2121

@@ -24,7 +24,7 @@ The following sample depicts a `FinancialChart` showing the stock trend of Micro
2424

2525
<div class="divider--half"></div>
2626

27-
# {Platform} Chart Trendlines Dash Array Example
27+
## {Platform} Chart Trendlines Dash Array Example
2828

2929
The following sample depicts a `XamDataChart` showing a `FinancialPriceSeries` with a **QuarticFit** dashed trendline applied via the `TrendLineDashArray` property:
3030

@@ -33,17 +33,17 @@ The following sample depicts a `XamDataChart` showing a `FinancialPriceSeries` w
3333

3434
<div class="divider--half"></div>
3535

36-
# {Platform} Chart Trendline Layer
36+
## {Platform} Chart Trendline Layer
3737

3838
The `TrendLineLayer` is a series type that is designed to display a single trendline type for a target series. The difference between this and the existing trendline features on the existing series types is that since the `TrendLineLayer` is a series type, you can add more than one of them to the `Series` collection of the chart to have multiple trendlines attached to the same series. You can also have the trendline appear in the legend, which was not possible previously.
3939

40-
### Trendline Layer Usage
40+
## Trendline Layer Usage
4141

4242
The `TrendLineLayer` must be provided with a `TargetSeries` and a `TrendLineType` in order to work properly. The different trendline types that are available are the same as the trendlines that are available on the series.
4343

4444
If you would like to show the `TrendLineLayer` in the Legend, you can do so by setting the `UseLegend` property to `true`.
4545

46-
### Styling the Trendline Layer
46+
## Styling the Trendline Layer
4747

4848
By default, the `TrendLineLayer` renders with the same color as its `TargetSeries` in a dashed line. This can be configured by using the various styling properties on the `TrendLineLayer`.
4949

doc/en/components/charts/types/area-chart.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ The {Platform} Step Area Chart belongs to a group of category charts and it is r
9696

9797
<div class="divider--half"></div>
9898

99-
## Advanced Types of Area Charts
10099

101100
The following sections explain more advanced types of {Platform} Area Charts that can be created using the `XamDataChart` control instead of `CategoryChart` control with simplified API.
102101

doc/en/components/charts/types/bar-chart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ These use cases are commonly used for the following scenarios:
4848
- Stock Charts.
4949
- Any String Value Comparing a Numeric Value or Time-Series Value.
5050

51-
### Bar Chart Best Practices:
51+
### Bar Chart Best Practices
5252

5353
- Start you numeric Axis at 0.
5454
- Use a single color for the bars.
@@ -61,7 +61,7 @@ These use cases are commonly used for the following scenarios:
6161
- You have too much data so the Y-Axis can't fit in the space or is not legible.
6262
- You need a detailed Time-Series analysis - consider a [Line Chart](line-chart.md) with a Time-Series for this type of data.
6363

64-
### Bar Chart Data Structure:
64+
### Bar Chart Data Structure
6565

6666
- The data source must be an array or a list of data items.
6767
- The data source must contain at least one data item.

doc/en/components/charts/types/column-chart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ There are several uses cases for Column Charts. When you:
3131
- Need to display negative values as well as positive values in the same data set.
3232
- Have a large, high-volume data set that fits well with the chart interactions like Panning, Zooming, and Drill-down.
3333

34-
### Column Charts Best Practices:
34+
### Column Charts Best Practices
3535

3636
- Always start the Y-Axis (left or right axis) at 0 so data comparison is accurate.
3737
- Order time-series data from left to right.
@@ -40,7 +40,7 @@ There are several uses cases for Column Charts. When you:
4040

4141
- You have many (more than 10 or 12) series of data. Your goal is to ensure the chart is readable.
4242

43-
### Column Charts Data Structure:
43+
### Column Charts Data Structure
4444

4545
- The data model must contain at least one numeric property.
4646
- The data model may contain an options string or date-time property for labels.

doc/en/components/charts/types/line-chart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ There are several common use cases for choosing a Line Chart:
4646
- Need to show data trends for one or more categories for comparative analysis.
4747
- Need to visualize detailed time-series data.
4848

49-
### Line Chart Best Practices:
49+
### Line Chart Best Practices
5050

5151
- Always start the Y-Axis (left or right axis) at 0 so data comparison is accurate.
5252
- Order time-series data from left to right.
@@ -57,7 +57,7 @@ There are several common use cases for choosing a Line Chart:
5757
- You have many (more than 7 or 10) series of data. Your goal is to ensure the chart is readable.
5858
- Time-series data has similar values (data over the same period), it makes overlapped lines impossible to differentiate.
5959

60-
### Line Chart Data Structure:
60+
### Line Chart Data Structure
6161

6262
- The data source must be an array or a list of data items (for single series).
6363
- The data source must be an array of arrays or a list of lists (for multiple series).

doc/en/components/charts/types/stock-chart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ As a Stock Chart is meant to allow the user to perform data analysis functions,
5050
- Trend Lines
5151
- Navigation / Zoombar View
5252

53-
### Stock Chart Data Structure:
53+
### Stock Chart Data Structure
5454

5555
- The data source must be an array or a list of data items.
5656
- The data source must contain at least one data item.

doc/en/components/excel-library-using-worksheets.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ You can specify the region to apply the filter by using the `SetRegion` method o
140140

141141
Below is a list of methods and their descriptions that you can use to add a filter to a worksheet:
142142

143-
| Method | Description |
144-
| ------------- |:-------------: |
143+
| Method | Description |
144+
| --------------|-------------|
145145
|`ApplyAverageFilter`|Represents a filter which can filter data based on whether the data is below or above the average of the entire data range.|
146146
|`ApplyDatePeriodFilter`|Represents a filter which can filter dates in a Month, or quarter of any year.|
147147
|`ApplyFillFilter`|Represents a filter which will filter cells based on their background fills. This filter specifies a single CellFill. Cells of with this fill will be visible in the data range. All other cells will be hidden.|

doc/en/components/general-changelog-dv-blazor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ Data Filtering via the `InitialFilter` property. Apply filter expressions to fil
629629
- exposed `selectedItem`, `items` and `groups` getters
630630
- `XamRadialGauge`
631631
- New title/subtitle properties. `TitleText`, `SubtitleText` will appear near the bottom the gauge. In addition, the various title/subtitle font properties were added such as `TitleFontSize`, `TitleFontFamily`, `TitleFontStyle`, `TitleFontWeight` and `TitleExtent`. Finally, the new `TitleDisplaysValue` will allow the value to correspond with the needle's position.
632-
- New `OpticalScalingEnabled` and `OpticalScalingSize` properties for the `XamRadialGauge`. This new feature will manage the size at which labels, titles, and subtitles of the gauge have 100% optical scaling. You can read more about this new feature [here](radial-gauge.md#optical-scaling)
632+
- New `OpticalScalingEnabled` and `OpticalScalingSize` properties for the `XamRadialGauge`. This new feature will manage the size at which labels, titles, and subtitles of the gauge have 100% optical scaling. You can read more about this new feature in this [topic](radial-gauge.md#optical-scaling)
633633
- New highlight needle was added. `HighlightValue` and `HighlightValueDisplayMode` when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear.
634634
- `XamRadialChart`
635635
- New Label Mode

doc/en/components/general-changelog-dv-react.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ igr-tab-panel component is removed. The igr-tab now encompasses both the tab hea
417417
|32598 | `IgrDataGrid` | Multi-selection is not working correctly
418418
|36374 | `IgrInput` | A previous value was bound when a form was submitted on any touch device|
419419

420-
## **{PackageVerChanges-24-2-MAR1}**
420+
## **{PackageVerChanges-24-2-MAR}**
421421

422422
### {PackageGrids}
423423
The following table lists the bug fixes made for the {ProductName} toolset for this release:
@@ -426,7 +426,7 @@ The following table lists the bug fixes made for the {ProductName} toolset for t
426426
|------------|---------|------------------|
427427
|36864|Grids|There is wrong import path "grids/combined" for the react licensed package|
428428

429-
## **{PackageVerChanges-24-2-MAR}**
429+
## **{PackageVerChanges-24-2-FEB}**
430430

431431
### {PackageGrids}
432432

@@ -644,7 +644,7 @@ DashboardTile <label>PREVIEW</label>
644644

645645
- `XamRadialGauge`
646646
- New title/subtitle properties. `TitleText`, `SubtitleText` will appear near the bottom the gauge. In addition, the various title/subtitle font properties were added such as `TitleFontSize`, `TitleFontFamily`, `TitleFontStyle`, `TitleFontWeight` and `TitleExtent`. Finally, the new `TitleDisplaysValue` will allow the value to correspond with the needle's position.
647-
- New `OpticalScalingEnabled` and `OpticalScalingSize` properties for the `XamRadialGauge`. This new feature will manage the size at which labels, titles, and subtitles of the gauge have 100% optical scaling. You can read more about this new feature [here](radial-gauge.md#optical-scaling)
647+
- New `OpticalScalingEnabled` and `OpticalScalingSize` properties for the `XamRadialGauge`. This new feature will manage the size at which labels, titles, and subtitles of the gauge have 100% optical scaling. You can read more about this new feature in this [topic](radial-gauge.md#optical-scaling)
648648
- New highlight needle was added. `HighlightValue` and `HighlightValueDisplayMode` when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear.
649649
- `XamLinearGauge`
650650
- New highlight needle was added. `HighlightValue` and `HighlightValueDisplayMode` when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear.

0 commit comments

Comments
 (0)