dashboard-js-devexpress-dot-dashboard-dot-model-d498a49c.md
An Image dashboard item that displays static images.
export class ImageItem extends DashboardItem
The image dashboard item is used to add static images to a dashboard.
The following documentation is available:
The following example shows how to create the Image dashboard item and provide a static image by URL. Create the ImageItem instance and use the ImageItem.urlPath property to specify a URL to a static image.
After you add the created dashboard item to the Dashboard.items collection, call the Dashboard.rebuildLayout method to rebuild the dashboard layout and display changes.
// Use the line below for a modular approach:
// import * as Model from 'devexpress-dashboard/model'
// Use the line below for an approach with global namespaces:
// var Model = DevExpress.Dashboard.Model;
public createImage(){
var imageItem = new Model.ImageItem();
imageItem.urlPath("https://www.devexpress.com/Products/NET/Dashboard/i/dashboard-tablet.png");
imageItem.sizeMode("Squeeze");
control.dashboard().items.push(imageItem);
// ...
control.dashboard().rebuildLayout();
}
SerializableModel TypedSerializableModel DashboardItem ImageItem
See Also
Initializes a new instance of the ImageItem class.
constructor(
modelJson?: any,
serializer?: DevExpress.Analytics.Utils.ModelSerializer
)
| Name | Type | Description |
|---|---|---|
| modelJson | any |
A JSON object used for dashboard deserialization. Do not pass this parameter directly.
| | serializer | ModelSerializer |
An object used for dashboard deserialization. Do not pass this parameter directly.
|
horizontalAlignment: ko.Observable<DevExpress.Dashboard.Model.ImageHorizontalAlignment>
| Type |
|---|
| Observable<ImageHorizontalAlignment> |
image64: ko.Observable<string>
| Type |
|---|
| Observable<string> |
Specifies a string that is used as alternative text for a static image
imageAltText: ko.Observable<string>
| Type | Description |
|---|---|
| Observable<string> |
The string value that is used as alternative text.
|
You can specify the alternative text for a static image. Alt text makes images accessible to users who cannot see them, especially those using screen readers.
For information on how to set alt text in the UI, refer to the following help topic: Add Alternative Text for Image and Bound Image Items in Web.
imageType: ko.Observable<string>
| Type |
|---|
| Observable<string> |
sizeMode: ko.Observable<DevExpress.Dashboard.Model.ImageSizeMode>
| Type |
|---|
| Observable<ImageSizeMode> |
urlPath: ko.Observable<string>
| Type |
|---|
| Observable<string> |
verticalAlignment: ko.Observable<DevExpress.Dashboard.Model.ImageVerticalAlignment>
| Type |
|---|
| Observable<ImageVerticalAlignment> |