Spire.XLS 11.10.5已发布。本次更新主要新增了一些实用图表,比如瀑布图、排列图和直方图等等。详情请阅读以下内容。 新功能: 支持瀑布图、排列图、直方图、箱型图、树状图、旭日图以及漏斗图 Workbook workbook = new Workbook(); workbook.LoadFromFile("waterfall_sample.xlsx"); var sheet = workbook.Worksheets[0]; var officeChart = sheet.Charts.Add(); //Set chart type as waterfall officeChart.ChartType = ExcelChartType.WaterFall; //Set data range to the chart from the worksheet officeChart.DataRange…