| layout | post |
|---|---|
| title | Syncfusion Dialog appearance-and-styling |
| description | Learn here about appearance and styling with Syncfusion Essential Angular Dialog control, its elements, and more. |
| platform | angularjs |
| control | Angular- Dialog |
| documentation | ug |
In order to display any title for our dialog, we can use the e-showheader property to display the header of the Dialog. By default, rounded corner property is true in Dialog.
{% highlight html %}
This is a simple dialog
{% endhighlight %}
Using [e-showoninit] property to true or false, we can either display our dialog on the page load or on any actions. By default, [showoninit] property is true in Dialog.
{% highlight html %}
This is a simple dialog
{% endhighlight %}
You can use e-showroundedcorner property to add rounded borders to the dialog popup elements. By default, rounded corner property is disabled in Dialog.
{% highlight html %}
This is a simple dialog
{% endhighlight %}
To set the Dialog the dialog to be responsive set the e-isresponsive property as true. By default, isresponsive property is disabled in Dialog. This will override the height and width set for Dialog on resizing the widow and in device view.
Using the e-htmlattributes property we can directly set our own html attributes to the wrapper of the Dialog component.
{% highlight html %}
This is a simple dialog
{% endhighlight %}

