使用迷你图和设置 3D 格式
Contents
[
Hide
]
使用迷你图
Microsoft Excel 2010 可以以比以往更多的方式分析信息。它允许用户使用新的数据分析和可视化工具跟踪和突出重要的数据趋势。迷你图是可以放置在单元格内的迷你图表,以便您可以在同一个表格中查看数据和图表。当正确使用迷你图时,数据分析会更快、更切题。它们还提供了一个简单的信息视图,避免了带有大量繁忙图表的过度拥挤的工作表。
Aspose.Cells 提供了一个 API 用于在电子表格中操作迷你图。
Microsoft Excel 中的迷你图
要在 Microsoft Excel 2010 中插入迷你图:
- 选择要显示迷你图的单元格。为了便于查看,请选择数据旁边的单元格。
- 点击插入在功能区上,然后选择柱子在里面迷你图团体。
- 选择或输入工作表中包含源数据的单元格范围。图表将出现。
迷你图可帮助您查看趋势,例如垒球联赛的输赢记录。迷你图甚至可以总结联盟中每支球队的整个赛季。
使用 Aspose.Cells 的迷你图
开发者可以使用Aspose.Cells提供的API创建、删除或读取sparklines(在模板文件中)。管理sparklines的类包含在Aspose.Cells.Charts命名空间,因此您需要在使用这些功能之前导入此命名空间。
通过为给定的数据范围添加自定义图形,开发人员可以自由地将不同类型的微型图表添加到选定的单元格区域。
下面的示例演示了迷你图功能。该示例显示了如何:
- 打开一个简单的模板文件。
- 阅读工作表的迷你图信息。
- 将给定数据范围的新迷你图添加到单元格区域。
- 将 Excel 文件保存到磁盘。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Instantiate a Workbook | |
// Open a template file | |
Workbook book = new Workbook(dataDir + "Book1.xlsx"); | |
// Get the first worksheet | |
Worksheet sheet = book.Worksheets[0]; | |
// Use the following lines if you need to read the Sparklines | |
// Read the Sparklines from the template file (if it has) | |
foreach (SparklineGroup g in sheet.SparklineGroups) | |
{ | |
// Display the Sparklines group information e.g type, number of sparklines items | |
Console.WriteLine("sparkline group: type:" + g.Type + ", sparkline items count:" + g.Sparklines.Count); | |
foreach (Sparkline s in g.Sparklines) | |
{ | |
// Display the individual Sparkines and the data ranges | |
Console.WriteLine("sparkline: row:" + s.Row + ", col:" + s.Column + ", dataRange:" + s.DataRange); | |
} | |
} | |
// Add Sparklines | |
// Define the CellArea D2:D10 | |
CellArea ca = new CellArea(); | |
ca.StartColumn = 4; | |
ca.EndColumn = 4; | |
ca.StartRow = 1; | |
ca.EndRow = 7; | |
// Add new Sparklines for a data range to a cell area | |
int idx = sheet.SparklineGroups.Add(SparklineType.Column, "Sheet1!B2:D8", false, ca); | |
SparklineGroup group = sheet.SparklineGroups[idx]; | |
// Create CellsColor | |
CellsColor clr = book.CreateCellsColor(); | |
clr.Color = Color.Orange; | |
group.SeriesColor = clr; | |
// Save the excel file | |
book.Save(dataDir + "Book1.out.xlsx"); |
设置 3D 格式
您可能需要 3D 图表样式,以便您可以只获得场景的结果。 Aspose.Cells确实提供了相关的API应用Microsoft Excel 2007 3D格式。
下面给出了一个完整的示例来演示如何创建图表和应用 Microsoft Excel 2007 3D 格式。执行示例代码后,工作表中将添加一个柱形图(具有 3D 效果)。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Create directory if it is not already present. | |
bool IsExists = System.IO.Directory.Exists(dataDir); | |
if (!IsExists) | |
System.IO.Directory.CreateDirectory(dataDir); | |
// Instantiate a new Workbook | |
Workbook book = new Workbook(); | |
// Add a Data Worksheet | |
Worksheet dataSheet = book.Worksheets.Add("DataSheet"); | |
// Add Chart Worksheet | |
Worksheet sheet = book.Worksheets.Add("MyChart"); | |
// Put some values into the cells in the data worksheet | |
dataSheet.Cells["B1"].PutValue(1); | |
dataSheet.Cells["B2"].PutValue(2); | |
dataSheet.Cells["B3"].PutValue(3); | |
dataSheet.Cells["A1"].PutValue("A"); | |
dataSheet.Cells["A2"].PutValue("B"); | |
dataSheet.Cells["A3"].PutValue("C"); | |
// Define the Chart Collection | |
ChartCollection charts = sheet.Charts; | |
// Add a Column chart to the Chart Worksheet | |
int chartSheetIdx = charts.Add(ChartType.Column, 5, 0, 25, 15); | |
// Get the newly added Chart | |
Aspose.Cells.Charts.Chart chart = book.Worksheets[2].Charts[0]; | |
// Set the background/foreground color for PlotArea/ChartArea | |
chart.PlotArea.Area.BackgroundColor = Color.White; | |
chart.ChartArea.Area.BackgroundColor = Color.White; | |
chart.PlotArea.Area.ForegroundColor = Color.White; | |
chart.ChartArea.Area.ForegroundColor = Color.White; | |
// Hide the Legend | |
chart.ShowLegend = false; | |
// Add Data Series for the Chart | |
chart.NSeries.Add("DataSheet!B1:B3", true); | |
// Specify the Category Data | |
chart.NSeries.CategoryData = "DataSheet!A1:A3"; | |
// Get the Data Series | |
Aspose.Cells.Charts.Series ser = chart.NSeries[0]; | |
// Apply the 3-D formatting | |
ShapePropertyCollection spPr = ser.ShapeProperties; | |
Format3D fmt3d = spPr.Format3D; | |
// Specify Bevel with its height/width | |
Bevel bevel = fmt3d.TopBevel; | |
bevel.Type = BevelPresetType.Circle; | |
bevel.Height = 2; | |
bevel.Width = 5; | |
// Specify Surface material type | |
fmt3d.SurfaceMaterialType = PresetMaterialType.WarmMatte; | |
// Specify surface lighting type | |
fmt3d.SurfaceLightingType = LightRigType.ThreePoint; | |
// Specify lighting angle | |
fmt3d.LightingAngle = 20; | |
// Specify Series background/foreground and line color | |
ser.Area.BackgroundColor = Color.Maroon; | |
ser.Area.ForegroundColor = Color.Maroon; | |
ser.Border.Color = Color.Maroon; | |
// Save the Excel file | |
book.Save(dataDir + "3d_format.out.xlsx"); |