@highcharts/dashboards
Version:
Highcharts Dashboards framework
38 lines (34 loc) • 707 B
TypeScript
/* *
*
* (c) 2009-2025 Highsoft AS
*
* License: www.highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
*
* Authors:
* - Sebastian Bochan
* - Wojciech Chmiel
* - Gøran Slettemark
* - Sophie Bremer
*
* */
import type CSSObject from '../../Core/Renderer/CSSObject';
/**
* Options for configuring a more custom text.
*/
declare interface TextOptions {
/**
* The class name which is added to the text element.
*/
className?: string;
/**
* A collection of CSS properties for the text.
*/
style?: CSSObject;
/**
* The text content itself.
*/
text?: string;
}
export default TextOptions;