microting/ngx-charts

View on GitHub
src/common/legend/legend-options.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ColorHelper } from '../color.helper';
import { ScaleType } from '../../utils/scale-type.enum';
import { LegendPosition } from './legend-position.enum';

export interface LegendOptions {
  scaleType: ScaleType;
  domain: string[];
  colors: ColorHelper;
  title: string;
  position: LegendPosition;
}