@progress/kendo-angular-gauges
Version:
Kendo UI Angular Gauges
26 lines (25 loc) • 738 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 margin settings for each side.
*/
export interface Margin {
/**
* Sets the top margin in pixels.
*/
top?: number;
/**
* Sets the right margin in pixels.
*/
right?: number;
/**
* Sets the bottom margin in pixels.
*/
bottom?: number;
/**
* Sets the left margin in pixels.
*/
left?: number;
}