ng-d3-graphs
Version:
<img src="./assets/ng-d3.png" alt="drawing" width="250" height="250"/>
17 lines (16 loc) • 327 B
TypeScript
export interface GraphOptions {
width?: number;
height?: number;
margin?: Margin;
yAxisLabel?: string;
xAxisLabel?: string;
xAxisTicks?: number;
timeParser?: string;
timeFormat?: string;
}
export interface Margin {
top?: number;
right?: number;
bottom?: number;
left?: number;
}