@progress/kendo-angular-gauges
Version:
Kendo UI Angular Gauges
26 lines (25 loc) • 744 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Represents the padding settings for each side.
*/
export interface Padding {
/**
* Sets the top padding in pixels.
*/
top?: number;
/**
* Sets the right padding in pixels.
*/
right?: number;
/**
* Sets the bottom padding in pixels.
*/
bottom?: number;
/**
* Sets the left padding in pixels.
*/
left?: number;
}