You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ej2-angular/calendar/customization.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -10,15 +10,15 @@ domainurl: ##DomainURL##
10
10
11
11
# Customization in Angular Calendar component
12
12
13
-
Calendar allows you to customize the entire appearance by using the custom CSS and [`renderDayCell`](https://ej2.syncfusion.com/angular/documentation/api/calendar/renderDayCellEventArgs#renderdaycelleventargs) event to customize the each day cell.
13
+
Calendar allows you to customize the entire appearance by using the custom CSS and [`renderDayCell`](https://ej2.syncfusion.com/angular/documentation/api/calendar/renderDayCellEventArgs/#renderdaycelleventargs) event to customize the each day cell.
14
14
15
15
This following section demonstrates how to disable, highlights the specific dates in the Calendar.
16
16
17
17
## Disable Weekends
18
18
19
-
You can disable the weekends of every month in a Calendar by using the [`renderDayCell`](https://ej2.syncfusion.com/angular/documentation/api/calendar/renderDayCellEventArgs#renderdaycelleventargs) event. The `isDisabled` argument from this event allows you to define whether the date to be disabled or not.
19
+
You can disable the weekends of every month in a Calendar by using the [`renderDayCell`](https://ej2.syncfusion.com/angular/documentation/api/calendar/renderDayCellEventArgs/#renderdaycelleventargs) event. The `isDisabled` argument from this event allows you to define whether the date to be disabled or not.
20
20
21
-
> Set [`isDisabled`](https://ej2.syncfusion.com/angular/documentation/api/calendar/renderDayCellEventArgs#renderdaycelleventargs) to true to disable the date value.
21
+
> Set [`isDisabled`](https://ej2.syncfusion.com/angular/documentation/api/calendar/renderDayCellEventArgs/#renderdaycelleventargs) to true to disable the date value.
22
22
23
23
The following example demonstrates how to disable weekends of every month.
24
24
@@ -38,7 +38,7 @@ The following example demonstrates how to disable weekends of every month.
38
38
39
39
## Day Cell Format
40
40
41
-
You can highlight the specific dates by adding the custom CSS or element to the day cell by using [`renderDayCell`](https://ej2.syncfusion.com/angular/documentation/api/calendar/renderDayCellEventArgs#renderdaycelleventargs).
41
+
You can highlight the specific dates by adding the custom CSS or element to the day cell by using [`renderDayCell`](https://ej2.syncfusion.com/angular/documentation/api/calendar/renderDayCellEventArgs/#renderdaycelleventargs).
42
42
43
43
Below is the list of classes that provides the flexible way to customize the Calendar component.
44
44
@@ -77,7 +77,7 @@ The following example highlights the world health date (7th April every year) an
77
77
78
78
## Highlight Weekends
79
79
80
-
You can highlight the weekends of every month in a Calendar by using the [`renderDayCell`](https://ej2.syncfusion.com/angular/documentation/api/calendar/renderDayCellEventArgs#renderdaycelleventargs) event. The following example demonstrates how to highlights the weekends of every month.
80
+
You can highlight the weekends of every month in a Calendar by using the [`renderDayCell`](https://ej2.syncfusion.com/angular/documentation/api/calendar/renderDayCellEventArgs/#renderdaycelleventargs) event. The following example demonstrates how to highlights the weekends of every month.
> You can refer to our [Angular Calendar](https://www.syncfusion.com/angular-ui-components/angular-calendar) feature tour page for its groundbreaking feature representations. You can also explore our [Angular Calendar example](https://ej2.syncfusion.com/angular/demos/#/material/calendar/default) that shows how to render the Calendar in Angular.
194
+
> You can refer to our [Angular Calendar](https://www.syncfusion.com/angular-components/angular-calendar) feature tour page for its groundbreaking feature representations. You can also explore our [Angular Calendar example](https://ej2.syncfusion.com/angular/demos/#/material/calendar/default) that shows how to render the Calendar in Angular.
Copy file name to clipboardExpand all lines: ej2-angular/chart/getting-started.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ domainurl: ##DomainURL##
10
10
11
11
# Getting started with Angular Chart component
12
12
13
-
This section explains you the steps required to create a simple [Angular Chart](https://www.syncfusion.com/angular-ui-components/angular-charts) and demonstrate the basic usage of the Chart component in an Angular environment.
13
+
This section explains you the steps required to create a simple [Angular Chart](https://www.syncfusion.com/angular-components/angular-charts) and demonstrate the basic usage of the Chart component in an Angular environment.
14
14
15
15
To get start quickly with Angular Chart using CLI and Schematics, you can check on this video:
16
16
@@ -190,7 +190,7 @@ This section explains how to plot below JSON data to the chart.
190
190
191
191
```
192
192
193
-
Add a series object to the chart by using [`series`](https://ej2.syncfusion.com/angular/documentation/api/chart/seriesDirective/) property. Now map the field names `month` and `sales` in the JSON data to the [`xName`](https://ej2.syncfusion.com/angular/documentation/api/chart/seriesDirective/#xname) and [`yName`](https://ej2.syncfusion.com/angular/documentation/api/chart/seriesDirective/#yname) properties of the series, then set the JSON data to [`dataSource`](https://ej2.syncfusion.com/angular/documentation/api/chart/seriesDirective#datasource) property.
193
+
Add a series object to the chart by using [`series`](https://ej2.syncfusion.com/angular/documentation/api/chart/seriesDirective/) property. Now map the field names `month` and `sales` in the JSON data to the [`xName`](https://ej2.syncfusion.com/angular/documentation/api/chart/seriesDirective/#xname) and [`yName`](https://ej2.syncfusion.com/angular/documentation/api/chart/seriesDirective/#yname) properties of the series, then set the JSON data to [`dataSource`](https://ej2.syncfusion.com/angular/documentation/api/chart/seriesDirective/#datasource) property.
194
194
195
195
Since the JSON contains category data, set the [`valueType`](https://ej2.syncfusion.com/angular/documentation/api/chart/axisDirective/#valuetype)for horizontal axis to `Category`. By default, the axis valueType is `Numeric`.
196
196
@@ -210,7 +210,7 @@ Since the JSON contains category data, set the [`valueType`](https://ej2.syncfus
210
210
211
211
The sales data are in thousands, so format the vertical axis label by adding
212
212
<b>$</b> as a prefix and `K` as a suffix to each label. This can be achieved by setting the
213
-
`${value}K` to the [`labelFormat`](https://ej2.syncfusion.com/angular/documentation/api/chart/axisDirective#labelformat) property of axis. Here, `{value}` act as a placeholder
213
+
`${value}K` to the [`labelFormat`](https://ej2.syncfusion.com/angular/documentation/api/chart/axisDirective/#labelformat) property of axis. Here, `{value}` act as a placeholder
Copy file name to clipboardExpand all lines: ej2-angular/check-box/getting-started.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -153,12 +153,12 @@ The Essential JS 2 CheckBox contains 3 different states visually, they are:
153
153
* Unchecked
154
154
* Indeterminate
155
155
156
-
The CheckBox [`checked`](https://ej2.syncfusion.com/angular/documentation/api/check-box#checked) property is used to handle the checked and unchecked state.
156
+
The CheckBox [`checked`](https://ej2.syncfusion.com/angular/documentation/api/check-box/#checked) property is used to handle the checked and unchecked state.
157
157
In checked state a tick mark will be added to the visualization of CheckBox.
158
158
159
159
### Indeterminate
160
160
161
-
CheckBox indeterminate state can be set through [`indeterminate`](https://ej2.syncfusion.com/angular/documentation/api/check-box#indeterminate) property. CheckBox indeterminate state masks the real value of CheckBox visually. Checkbox cannot be changed to indeterminate state through the user interface, this state can be achieved only through the property.
161
+
CheckBox indeterminate state can be set through [`indeterminate`](https://ej2.syncfusion.com/angular/documentation/api/check-box/#indeterminate) property. CheckBox indeterminate state masks the real value of CheckBox visually. Checkbox cannot be changed to indeterminate state through the user interface, this state can be achieved only through the property.
Copy file name to clipboardExpand all lines: ej2-angular/color-picker/how-to/customize-colorpicker.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ domainurl: ##DomainURL##
12
12
13
13
## Custom palette
14
14
15
-
By default, the Palette will be rendered with default colors. To load custom colors in the palette, specify the colors in the [`presetColors`](https://ej2.syncfusion.com/angular/documentation/api/color-picker#presetcolors) property. To customize the color palette, add a custom class to palette tiles using [`BeforeTileRender`](https://ej2.syncfusion.com/angular/documentation/api/color-picker#beforetilerender) event.
15
+
By default, the Palette will be rendered with default colors. To load custom colors in the palette, specify the colors in the [`presetColors`](https://ej2.syncfusion.com/angular/documentation/api/color-picker/#presetcolors) property. To customize the color palette, add a custom class to palette tiles using [`BeforeTileRender`](https://ej2.syncfusion.com/angular/documentation/api/color-picker/#beforetilerender) event.
16
16
17
17
The following sample demonstrates the above functionalities.
18
18
@@ -32,7 +32,7 @@ The following sample demonstrates the above functionalities.
32
32
33
33
## Hide input area from picker
34
34
35
-
By default, the input area will be rendered in ColorPicker. To hide the input area from it, add `e-hide-value` class to ColorPicker using the [`cssClass`](https://ej2.syncfusion.com/angular/documentation/api/color-picker#cssclass) property.
35
+
By default, the input area will be rendered in ColorPicker. To hide the input area from it, add `e-hide-value` class to ColorPicker using the [`cssClass`](https://ej2.syncfusion.com/angular/documentation/api/color-picker/#cssclass) property.
36
36
37
37
In the following sample, the ColorPicker is rendered without input area.
38
38
@@ -74,7 +74,7 @@ The following sample show the customized color picker handle.
74
74
75
75
By default, the applied color will be updated in primary button of the color picker. You can customize that as `icon`.
76
76
77
-
In the following sample, the `picker` icon is added to primary button and using [`change`](https://ej2.syncfusion.com/angular/documentation/api/color-picker#change) event the selected color will be updated in bottom portion of the icon.
77
+
In the following sample, the `picker` icon is added to primary button and using [`change`](https://ej2.syncfusion.com/angular/documentation/api/color-picker/#change) event the selected color will be updated in bottom portion of the icon.
> You can refer to our [Angular ComboBox](https://www.syncfusion.com/angular-ui-components/angular-combobox) feature tour page for its groundbreaking feature representations. You can also explore our [Angular ComboBox example](https://ej2.syncfusion.com/angular/demos/#/material/combo-box/default) that shows how to render the ComboBox in Angular.
255
+
> You can refer to our [Angular ComboBox](https://www.syncfusion.com/angular-components/angular-combobox) feature tour page for its groundbreaking feature representations. You can also explore our [Angular ComboBox example](https://ej2.syncfusion.com/angular/demos/#/material/combo-box/default) that shows how to render the ComboBox in Angular.
Copy file name to clipboardExpand all lines: ej2-angular/context-menu/how-to/add-or-remove-context-menu-items.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ domainurl: ##DomainURL##
10
10
11
11
# Add or remove context menu items in Angular Context menu component
12
12
13
-
ContextMenu items can be added or removed using the [`insertAfter`](https://ej2.syncfusion.com/angular/documentation/api/menu#insertafter), [`insertBefore`](https://ej2.syncfusion.com/angular/documentation/api/menu#insertbefore) and [`removeItems`](https://ej2.syncfusion.com/angular/documentation/api/menu#removeitems) methods.
13
+
ContextMenu items can be added or removed using the [`insertAfter`](https://ej2.syncfusion.com/angular/documentation/api/menu/#insertafter), [`insertBefore`](https://ej2.syncfusion.com/angular/documentation/api/menu/#insertbefore) and [`removeItems`](https://ej2.syncfusion.com/angular/documentation/api/menu/#removeitems) methods.
14
14
15
15
In the following example, the **Display Settings** menu items are added before the **Personalize** item, the **Sort By** menu items are added after the **Refresh**, and the **Paste** item is removed from context menu.
0 commit comments