@highcharts/dashboards
Version:
Highcharts Dashboards framework
23 lines (22 loc) • 462 B
TypeScript
/**
* Polygon box for certain series like `venn` and `wordcloud`.
*/
export interface PolygonBoxObject {
/**
* The bottom position of the polygon box.
*/
bottom: number;
/**
* The left position of the polygon box.
*/
left: number;
/**
* The right position of the polygon box.
*/
right: number;
/**
* The top position of the polygon box.
*/
top: number;
}
export default PolygonBoxObject;