padding

Specifies chart padding.

  • padding
    • top - (integer) the top padding
    • bottom - (integer) the bottom padding
    • left - (integer) the left padding
    • right - (integer) the right padding

Value type: Object

var chart =  new dhx.ui({
        view:"chart",
	...
	padding:{
			top: 6,
                        left:10
		},
        ...
})

or

chart.define("padding",{
			top: 6,
                        left:10
});