Skip to content

Commit

Permalink
Merge pull request #104 from uruk/master
Browse files Browse the repository at this point in the history
Remove styles that stop LineChart's content from rendering on Android
  • Loading branch information
tomauty authored Jul 15, 2016
2 parents 9a3736d + 3c819ed commit c80cd17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LineChart.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ export default class LineChart extends Component<void, any, any> {
);
}
return (
<View style={{ overflow: 'hidden' }}>
<View>
<Grid {...this.props} />
<View style={{ height: this.props.height, backgroundColor: 'transparent' }}>
<View style={{ height: this.props.height }}>
{this._drawLine()}
</View>
</View>
Expand Down

0 comments on commit c80cd17

Please sign in to comment.