ChartLoader

Overview

ChartLoader is a class in Aspose.Cells FOSS for Typescript.

ChartLoader.loadCharts(filePath) asynchronously reads a spreadsheet file and returns a Promise that resolves to an array of ChartInfo objects representing each chart in the file.

This class provides 1 method for working with ChartLoader objects in Typescript programs. Available methods include: loadCharts. All public members are accessible to any Typescript application after installing the Aspose.Cells FOSS for Typescript package. Properties: categories, height, name, values, width, x, and 1 more.

Description

ChartLoader is a class in the Aspose.Cells FOSS library for TypeScript that exposes 1 method and 7 properties for programmatic use.

Core capabilities include: : number; : number; : number. These operations enable developers to integrate chartloader functionality directly into TypeScript applications.

The class also provides the x property (gets the x), the y property (gets the y), the width property (gets the width).

Properties

NameTypeAccessDescription
x: numberReadGets the x.
y: numberReadGets the y.
width: numberReadGets the width.
height: numberReadGets the height.
name: stringReadGets the name.
values: number[]ReadGets the values.
categories: string[]ReadGets the categories.

Methods

SignatureDescription
loadCharts(filePath: string)Promise<ChartInfo[]>Asynchronously reads a spreadsheet file and returns a Promise that resolves to an array of ChartInfo objects representing each chart in the file

See Also