Skip to content

DOCINFRA-2341_merged_using_automation #584

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ej2-angular/barcode/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,4 @@ You can add the datamatrix code in our Angular Barcode Generator component.

{% previewsample "page.domainurl/samples/barcode/getting-started/datamatrix-cs1" %}

> You can refer to our [Angular Barcode Generator](https://www.syncfusion.com/angular-ui-components/angular-barcode) feature tour page for its groundbreaking feature representations. You can also explore our [Angular Barcode Generator example](https://ej2.syncfusion.com/angular/demos/#/material/barcode/default-functionalities) that shows how to render the Barcode in Angular.
> You can refer to our [Angular Barcode Generator](https://www.syncfusion.com/angular-components/angular-barcode) feature tour page for its groundbreaking feature representations. You can also explore our [Angular Barcode Generator example](https://ej2.syncfusion.com/angular/demos/#/material/barcode/default-functionalities) that shows how to render the Barcode in Angular.
10 changes: 5 additions & 5 deletions ej2-angular/schedule/row-auto-height.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ domainurl: ##DomainURL##

By default, the height of the Scheduler rows in Timeline views are static and therefore, when the same time range holds multiple overlapping appointments, a `+n more` text indicator will be displayed. With this feature enabled, you can now view all the overlapping appointments present in those specific time range by auto-adjusting the row height based on the presence of the appointments count, instead of displaying the `+n more` text indicators.

To enable auto row height adjustments on Scheduler Timeline views and Month view, set `true` to the [`rowAutoHeight`](https://ej2.syncfusion.com/angular/documentation/api/schedule#rowautoheight) property whose default value is `false`.
To enable auto row height adjustments on Scheduler Timeline views and Month view, set `true` to the [`rowAutoHeight`](https://ej2.syncfusion.com/angular/documentation/api/schedule/#rowautoheight) property whose default value is `false`.

> This auto row height adjustment is applicable only on all the Timeline views as well as on the calendar Month view.

Expand All @@ -22,7 +22,7 @@ Now, let's see how it works on those applicable views with examples.

## Calendar month view

By default, the rows of the calendar Month view can hold only the limited appointments count based on its row height, and the rest of the overlapping appointments are indicated with a `+n more` text indicator. The following example shows how the month view row auto-adjusts based on the number of appointments count, when this [`rowAutoHeight`](https://ej2.syncfusion.com/angular/documentation/api/schedule#rowautoheight) feature is enabled.
By default, the rows of the calendar Month view can hold only the limited appointments count based on its row height, and the rest of the overlapping appointments are indicated with a `+n more` text indicator. The following example shows how the month view row auto-adjusts based on the number of appointments count, when this [`rowAutoHeight`](https://ej2.syncfusion.com/angular/documentation/api/schedule/#rowautoheight) feature is enabled.

{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
Expand All @@ -38,7 +38,7 @@ By default, the rows of the calendar Month view can hold only the limited appoin

## Timeline views

When the feature [`rowAutoHeight`](https://ej2.syncfusion.com/angular/documentation/api/schedule#rowautoheight) is enabled in Timeline views, the row height gets auto-adjusted based on the number of overlapping events occupied on the same time range, which is demonstrated in the following example.
When the feature [`rowAutoHeight`](https://ej2.syncfusion.com/angular/documentation/api/schedule/#rowautoheight) is enabled in Timeline views, the row height gets auto-adjusted based on the number of overlapping events occupied on the same time range, which is demonstrated in the following example.

{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
Expand Down Expand Up @@ -74,7 +74,7 @@ The following example shows how the auto row adjustment feature works on timelin

## Appointments occupying entire cell

By default, with the feature [`rowAutoHeight`](https://ej2.syncfusion.com/angular/documentation/api/schedule#rowautoheight), there will be a space in the bottom of the cell when appointment is rendered. To avoid this space, we can set true to the property [`ignoreWhitespace`](https://ej2.syncfusion.com/angular/documentation/api/schedule/eventSettings/#ignorewhitespace) with in [`eventSettings`](https://ej2.syncfusion.com/angular/documentation/api/schedule/eventSettings/) whereas its default property value is false. In the following code example, the whitespace below the appointments has been ignored.
By default, with the feature [`rowAutoHeight`](https://ej2.syncfusion.com/angular/documentation/api/schedule/#rowautoheight), there will be a space in the bottom of the cell when appointment is rendered. To avoid this space, we can set true to the property [`ignoreWhitespace`](https://ej2.syncfusion.com/angular/documentation/api/schedule/eventSettings/#ignorewhitespace) with in [`eventSettings`](https://ej2.syncfusion.com/angular/documentation/api/schedule/eventSettings/) whereas its default property value is false. In the following code example, the whitespace below the appointments has been ignored.

{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
Expand All @@ -90,6 +90,6 @@ By default, with the feature [`rowAutoHeight`](https://ej2.syncfusion.com/angula

![Ignoring Whitespace](images/schedule-ignore-whitespace.png)

**Note**: The property [`ignoreWhitespace`](https://ej2.syncfusion.com/angular/documentation/api/schedule/eventSettings/#ignorewhitespace) will be applicable only when [`rowAutoHeight`](https://ej2.syncfusion.com/angular/documentation/api/schedule#rowautoheight) feature is enabled in the Scheduler
**Note**: The property [`ignoreWhitespace`](https://ej2.syncfusion.com/angular/documentation/api/schedule/eventSettings/#ignorewhitespace) will be applicable only when [`rowAutoHeight`](https://ej2.syncfusion.com/angular/documentation/api/schedule/#rowautoheight) feature is enabled in the Scheduler

> You can refer to our [Angular Scheduler](https://www.syncfusion.com/angular-components/angular-scheduler) feature tour page for its groundbreaking feature representations. You can also explore our [Angular Scheduler example](https://ej2.syncfusion.com/angular/demos/#/material/schedule/overview) to knows how to present and manipulate data.