Skip to content

Commit

Permalink
Added Issue gitbrent#422
Browse files Browse the repository at this point in the history
  • Loading branch information
gitbrent committed Oct 27, 2018
1 parent 38558c2 commit 7b3e350
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- X and Y table coordinates with value of zero ignored [\#411](https://github.com/gitbrent/PptxGenJS/pull/411) ([tovab](https://github.com/tovab))
- Placeholder left align property needs fixing [\#417](https://github.com/gitbrent/PptxGenJS/pull/417) ([raphael-trzpit](https://github.com/raphael-trzpit))
- Replace jquery each by standard forEach [\#418](https://github.com/gitbrent/PptxGenJS/pull/418) ([fdussert](https://github.com/fdussert))
- BugFix: 0 value plot points ignored on Scatter Chart [\#422](https://github.com/gitbrent/PptxGenJS/pull/422) ([ReimaFrgos](https://github.com/ReimaFrgos))
- Pass the callback as a function, rather than invoke it [\#424](https://github.com/gitbrent/PptxGenJS/pull/424) ([danielsiwiec](https://github.com/danielsiwiec))
### Removed

Expand Down
4 changes: 2 additions & 2 deletions examples/pptxgenjs-demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -1032,7 +1032,7 @@ function genSlides_Chart(pptx) {
{
name : 'TEST: getExcelColName',
labels: LETTERS.concat(['AA','AB','AC','AD']),
values: [-5,-3,1,3,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 ]
values: [-5,-3,0,3,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 ]
}
];

Expand Down Expand Up @@ -1457,7 +1457,7 @@ function genSlides_Chart(pptx) {
slide.addTable( [ [{ text:'Chart Examples: XY Scatter Chart', options:gOptsTextL },gOptsTextR] ], gOptsTabOpts );

var arrDataScatter1 = [
{ name:'X-Axis', values:[1,2,3,4,5,6,7,8,9,10] },
{ name:'X-Axis', values:[0,1,2,3,4,5,6,7,8,9] },
{ name:'Y-Value 1', values:[13, 20, 21, 25] },
{ name:'Y-Value 2', values:[21, 22, 25, 49] }
];
Expand Down

0 comments on commit 7b3e350

Please sign in to comment.