@sheetxl/models
Version:
Models - A Headless javascript spreadsheet library.
58 lines • 1.48 kB
TypeScript
export default ChartStyles;
declare class ChartStyles {
constructor(theme: any, styleId: any, appContext: string, _colorMap: any);
_theme: any;
_styleId: any;
_appContext: string;
getThemeColor(key: any): any;
getFadeStep(bandOffset: any, bandSize: any): number;
applyFade(adjs: any, offset: any, total: any): any[];
getPatternPaint(patternKey: any, offset: any, total: any): any;
calcColorPaintStyle(colorDef: any, offset: any, total: any): any;
createSolidFill(color: any): {
solid: any;
};
createNoneFill(): {
none: boolean;
};
createNoneStroke(): {
fill: {
none: boolean;
};
};
createDataPoints2DStrokeStyleProperties(offset: any, total: any): {
fill: {
none: boolean;
};
} | {
width: number;
fill: {
solid: any;
};
};
createDataPoints2DFillStyleProperties(offset: any, total: any): {
solid: any;
} | {
none: boolean;
};
createStrokeStyleProperties(property: any): {
width: number;
fill: {
solid: any;
};
} | {
width: number;
fill: {
none: boolean;
};
};
createFillStyleProperties(property: any): {
solid: any;
} | {
none: boolean;
};
createFontFillStyle(_chartStyleName: any): {
solid: any;
};
}
//# sourceMappingURL=ChartStyles.d.ts.map