pptxtojson
pptxtojson copied to clipboard
可以补充一下图表那一块,字段的含义吗?猜了老半天,没猜到
export interface ChartValue {
x: string
y: number
}
export interface ChartXLabel {
[key: string]: string
}
export interface ChartItem {
key: string
values: ChartValue[]
xlabels: ChartXLabel
}