ColorMapping
Home > @gooddata/sdk-code-convertors > ColorMapping
ColorMapping type
Signature:
export type ColorMapping = {
id: string;
color: {
type: "guid";
value: string;
} | {
type: "rgb";
value: {
r: number;
g: number;
b: number;
};
};
};