Skip to content

Commit

Permalink
Remove styles that stop LineChart's content from rendering on Android
Browse files Browse the repository at this point in the history
  • Loading branch information
Uruk authored Jul 13, 2016
1 parent 470f3c7 commit 3c819ed
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 3c819ed

Please sign in to comment.