Jenkins build is back to normal : POI-DSL-Maven #304

2017-08-09 Thread Apache Jenkins Server
See 



-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[Bug 61048] Newlines in cells not rendering with SXSSF

2017-08-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61048

PJ Fanning  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|NEW |RESOLVED

--- Comment #6 from PJ Fanning  ---
Added a fix using https://svn.apache.org/viewvc?view=revision=1804596

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[Bug 61048] Newlines in cells not rendering with SXSSF

2017-08-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61048

--- Comment #5 from Ivan  ---
Here is the cause:

org.apache.poi.xssf.streaming.SheetDataWriter#outputQuotedString

case '\n':
case '\r':
  if (counter > last) {
 _out.write(chars, last, counter - last);
  }
  _out.write("");
  last = counter + 1;
  break;


There should be _out.write("") for '\r'
and _out.write("") for '\n'

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[Bug 61396] DataBarFormatting, setWidthMin by default 10 % in excel output(when i getWidthMin gives 0 and i unable to setWidthMin to any other value)

2017-08-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61396

--- Comment #1 from raja  ---
Created attachment 35209
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=35209=edit
excel out put

right side column imnage is expected

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[Bug 61392] The method createExtendedColor() is undefined for the type CreationHelper

2017-08-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61392

--- Comment #2 from raja  ---
Nick Burch, Thank you. problem solved

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[Bug 61396] New: DataBarFormatting, setWidthMin by default 10 % in excel output(when i getWidthMin gives 0 and i unable to setWidthMin to any other value)

2017-08-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61396

Bug ID: 61396
   Summary: DataBarFormatting, setWidthMin by default 10 % in
excel output(when i getWidthMin gives 0 and i unable
to setWidthMin to any other value)
   Product: POI
   Version: 3.14-FINAL
  Hardware: PC
Status: NEW
  Severity: normal
  Priority: P2
 Component: SS Common
  Assignee: dev@poi.apache.org
  Reporter: cbenagara...@gmail.com
  Target Milestone: ---

public void conditionalFormatting(Sheet sheet) {
SheetConditionalFormatting sheetCF =
sheet.getSheetConditionalFormatting();

ExtendedColor color = 
sheet.getWorkbook().getCreationHelper().createExtendedColor();
color.setARGBHex("FF63BE7B");
CellRangeAddress[] regions = { CellRangeAddress.valueOf("B2:B7") };
ConditionalFormattingRule rule1 =
sheetCF.createConditionalFormattingRule(color);
DataBarFormatting db1 = rule1.getDataBarFormatting();
db1.getMinThreshold().setRangeType(RangeType.MIN);
db1.getMaxThreshold().setRangeType(RangeType.MAX);
sheetCF.addConditionalFormatting(regions, rule1);

}

also can't make it, Bar Colors:fill:color(gradient only working)

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org