d3-graph-controller
Version:
A TypeScript library for visualizing and simulating directed, interactive graphs.
20 lines (19 loc) • 369 B
text/typescript
/**
* Label configuration.
*/
export interface Label {
/**
* The color of the label.
* Can be any valid CSS expression.
*/
readonly color: string;
/**
* The font size of the label.
* Can be any valid CSS expression.
*/
readonly fontSize: string;
/**
* The text of the label.
*/
readonly text: string;
}