Provides access to Properties panel settings.
Object
View Demo
Specifies whether the Properties panel can be collapsed.
Boolean
Specifies whether the Properties panel is available.
When the enabled property is set to false, the Properties toolbar button is hidden.
Contains an array of command groups in the Properties panel.
Array<Object>
$(function () { var diagram = $("#diagram").dxDiagram({ propertiesPanel: { visible: true, collapsible: false, groups: [ { commands: ["units"] }, { commands: ["pageSize","pageOrientation","pageColor"] } ] }, }).dxDiagram("instance"); });