DataBar

DataBar class

描述 DataBar 条件格式规则。 此条件格式规则在单元格范围内显示 gradated 数据条。

public class DataBar

特性

姓名描述
AxisColor { get; set; }获取条件格式为数据条的单元格的轴颜色。
AxisPosition { get; set; }获取或设置条件格式规则指定的数据条轴的位置。
BarBorder { get; }获取指定数据栏边框的对象。
BarFillType { get; set; }获取或设置数据条如何填充颜色。
Color { get; set; }获取或设置此 DataBar 的颜色。
Direction { get; set; }获取或设置数据栏的显示方向。
MaxCfvo { get; }获取或设置此 DataBar 的最大值对象。 无法将其设置为 FormatConditionValueType.Min 类型的 null 或 CFValueObject。
MaxLength { get; set; }表示数据条的最大长度。
MinCfvo { get; }获取或设置此 DataBar 的最小值对象。 无法将其设置为 FormatConditionValueType.Max 类型的 null 或 CFValueObject。
MinLength { get; set; }表示数据条的最小长度。
NegativeBarFormat { get; }获取与数据栏条件格式规则关联的 NegativeBarFormat 对象。
ShowValue { get; set; }获取或设置标志,指示是否显示应用此数据条的单元格的值。 默认值为 true。

方法

姓名描述
ToImage(Cell, ImageOrPrintOptions)将单元格中的数据条渲染为图像字节数组。

例子


[C#]

//实例化一个工作簿对象
Workbook workbook = new Workbook();

Worksheet sheet = workbook.Worksheets[0];

//添加一个空的条件格式
int index = sheet.ConditionalFormattings.Add();

FormatConditionCollection fcs = sheet.ConditionalFormattings[index];

//设置条件格式范围。
CellArea ca = new CellArea();

ca.StartRow = 0;

ca.EndRow = 2;

ca.StartColumn = 0;

ca.EndColumn = 0;

fcs.AddArea(ca);

//添加条件。
int idx = fcs.AddCondition(FormatConditionType.DataBar);

fcs.AddArea(ca);

FormatCondition cond = fcs[idx];

//获取数据栏
DataBar dataBar = cond.DataBar;

dataBar.Color = Color.Orange;

//设置数据栏属性
dataBar.MinCfvo.Type = FormatConditionValueType.Percentile;

dataBar.MinCfvo.Value = 30;

dataBar.ShowValue = false;

dataBar.BarBorder.Type = DataBarBorderType.Solid;

dataBar.BarBorder.Color = Color.Plum;

 dataBar.BarFillType = DataBarFillType.Solid;
  
 dataBar.AxisColor = Color.Red;
 
 dataBar.AxisPosition = DataBarAxisPosition.Midpoint;
 
 dataBar.NegativeBarFormat.ColorType = DataBarNegativeColorType.Color;
 
 dataBar.NegativeBarFormat.Color = Color.White;
 
 dataBar.NegativeBarFormat.BorderColorType = DataBarNegativeColorType.Color;
 
 dataBar.NegativeBarFormat.BorderColor = Color.Yellow;
 
//放置单元格值
Aspose.Cells.Cell cell1 = sheet.Cells["A1"];

cell1.PutValue(10);

Aspose.Cells.Cell cell2 = sheet.Cells["A2"];

cell2.PutValue(120);

Aspose.Cells.Cell cell3 = sheet.Cells["A3"];

cell3.PutValue(260);

//保存Excel文件
workbook.Save("book1.xlsx");

[VB.NET]

'实例化工作簿对象
Dim workbook As Workbook = New Workbook()

Dim sheet As Worksheet = workbook.Worksheets(0)

'添加一个空的条件格式
Dim index As Integer = sheet.ConditionalFormattings.Add()

Dim fcs As FormatConditionCollection = sheet.ConditionalFormattings(index)

'设置条件格式范围。
Dim ca As New CellArea()

ca.StartRow = 0

ca.EndRow = 2

ca.StartColumn = 0

ca.EndColumn = 0

fcs.AddArea(ca)

'添加条件。
Dim idx As Integer = fcs.AddCondition(FormatConditionType.DataBar)

fcs.AddArea(ca)

Dim cond As FormatCondition = fcs(idx)

'获取数据栏
Dim dataBar As DataBar = cond.DataBar

dataBar.Color = Color.Orange

'设置数据栏属性
dataBar.MinCfvo.Type = FormatConditionValueType.Percentile

dataBar.MinCfvo.Value = 30

dataBar.ShowValue = False

dataBar.BarBorder.Type = DataBarBorderType.Solid

dataBar.BarBorder.Color = Color.Plum

 dataBar.BarFillType = DataBarFillType.Solid
  
 dataBar.AxisColor = Color.Red
 
 dataBar.AxisPosition = DataBarAxisPosition.Midpoint
 
 dataBar.NegativeBarFormat.ColorType = DataBarNegativeColorType.Color
 
 dataBar.NegativeBarFormat.Color = Color.White
 
 dataBar.NegativeBarFormat.BorderColorType = DataBarNegativeColorType.Color
 
 dataBar.NegativeBarFormat.BorderColor = Color.Yellow

'放置单元格值
Dim cell1 As Aspose.Cells.Cell = sheet.Cells("A1")

cell1.PutValue(10)

Dim cell2 As Aspose.Cells.Cell = sheet.Cells("A2")

cell2.PutValue(120)

Dim cell3 As Aspose.Cells.Cell = sheet.Cells("A3")

cell3.PutValue(260)

'保存 Excel 文件
workbook.Save("book1.xlsx")

也可以看看