Hi,
Hi,
(1) Open a new worksheet.
(2) Going down column A, enter these numbers: -1, 0, 1, 2, 3
(3) Set the width of column A to 40
(4) Highlight cells A1:A5
(5) On the Home tab, select Conditional formatting > Data Bars > Solid Fill
But when I performed the above mentioned steps in MS Excel 2010 and 2013 manually, it does produce the same output as per your attached screenshot here (https://forum.aspose.com/t/35729)
e.g
Sample code:
Dim book As New Aspose.Cells.Workbook
Dim sheet = book.Worksheets(0)
'Sample values.
Dim values As New List(Of Integer) From {-1, 0, 1, 2, 3}
'Populate the column with the values.
For i As Integer = 0 To values.Count - 1
sheet.Cells(i, 0).PutValue(values(i))
Next
'Set up data bar conditional formatting.
Dim index As Integer = sheet.ConditionalFormattings.Add()
Dim conds As FormatConditionCollection = sheet.ConditionalFormattings(index)
'Set the conditional format range.
Dim ca As CellArea = New CellArea()
ca.StartRow = 0
ca.EndRow = values.Count - 1
ca.StartColumn = 0
ca.EndColumn = 0
conds.AddArea(ca)
Dim idx As Integer = conds.AddCondition(FormatConditionType.DataBar)
Dim cond As FormatCondition = conds(idx)
cond.DataBar.BarFillType = DataBarFillType.Solid
cond.DataBar.AxisPosition = DataBarAxisPosition.Midpoint
'Make the column wider.
sheet.Cells.SetColumnWidth(0, 40)
'Save the results.
book.Save(“c:\temp\test.xlsx”, SaveFormat.Xlsx)
Yes, I also see what you see. If I take the Excel file that was generated using aspose Cells, and open it in Excel and manually try to change the conditional formatting (minimum value, axis position, etc.) the short zero-value bar remains. I can’t make it go away.
Hi Jim,
Hi,
Thanks Amjad, your solution worked perfectly.
Hi,