* Improve font color assignment in tree map chart component * Update changelog --------- Co-authored-by: Thomas Kaul <4159106+dtslvr@users.noreply.github.com>
6 lines
217 B
TypeScript
6 lines
217 B
TypeScript
export interface GetColorParams {
|
|
annualizedNetPerformancePercent: number;
|
|
negativeNetPerformancePercentsRange: { max: number; min: number };
|
|
positiveNetPerformancePercentsRange: { max: number; min: number };
|
|
}
|