pptxtojson icon indicating copy to clipboard operation
pptxtojson copied to clipboard

可以补充一下图表那一块,字段的含义吗?猜了老半天,没猜到

Open KingPuiWong opened this issue 5 months ago • 0 comments

export interface ChartValue {   
  x: string   
  y: number 
} 

export interface ChartXLabel {   
  [key: string]: string 
} 

export interface ChartItem {   
  key: string   
  values: ChartValue[]   
  xlabels: ChartXLabel 
}

KingPuiWong avatar Sep 09 '24 04:09 KingPuiWong