Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Charts: lineShadow option #138

Merged
merged 7 commits into from
Aug 21, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Quickly and easily create PowerPoint presentations with a few simple JavaScript
- [Chart Examples](#chart-examples)
- [Adding Text](#adding-text)
- [Text Options](#text-options)
- [Text Shadow Options](#text-shadow-options)
- [Shadow Options](#shadow-options)
- [Text Examples](#text-examples)
- [Adding Tables](#adding-tables)
- [Table Layout Options](#table-layout-options)
Expand Down Expand Up @@ -399,6 +399,8 @@ slide.addChart({TYPE}, {DATA}, {OPTIONS});
| `gridLineColor` | string | | `000000` | grid line color | hex color code. Ex: `{ gridLineColor:'0088CC' }` |
| `lineDataSymbol` | string | | `circle` | symbol used on line marker | `circle`,`dash`,`diamond`,`dot`,`none`,`square`,`triangle` |
| `lineDataSymbolSize` | number | points | `6` | size of line data symbol | 1-256. Ex: `{ lineDataSymbolSize:12 }` |
| `lineSize` | number | points | `2` | thickness of data line | 1 and more. Ex: `{ lineSize: 1 }` |
| `lineShadow` | object | | *shadow* | shadow of data line | `'none'` or [shadow object](#shadow-options) |
| `valueBarColors` | boolean | | `false` | forces chartColors on multi-data-series | `true` or `false` |

### Chart Examples
Expand Down Expand Up @@ -492,7 +494,7 @@ slide.addText([ {text:'TEXT', options:{OPTIONS}} ]);
| `underline` | boolean | | `false` | underline text | `true` or `false` |
| `valign` | string | | | vertical alignment | `top` or `middle` or `bottom` |

### Text Shadow Options
### Shadow Options
| Option | Type | Unit | Default | Description | Possible Values |
| :----------- | :------ | :------ | :-------- | :------------------ | :--------------------------------------- |
| `type` | string | | outer | shadow type | `outer` or `inner` |
Expand Down
Loading