Export react-native-charts-wrapper to PNG
up vote
0
down vote
favorite
I'm working on a react native application where I want to show data in the chart and then export the chart to PNG or Base64 image.
I'm using react-native-charts-wrapper library where I'm able to show the data in charts but not in able to convert it to base64 or png.
below is my code:
export default class App extends React.Component {
constructor() {
super();
this.state = {
legend: {
enabled: true,
textSize: 14,
form: 'SQUARE',
formSize: 14,
xEntrySpace: 10,
yEntrySpace: 5,
formToTextSpace: 5,
wordWrapEnabled: true,
maxSizePercent: 0.5
},
data: {
dataSets: [{
values: [{y: 100}, {y: 105}, {y: 102}, {y: 110}, {y: 114}, {y:
109}, {y: 105}, {y: 99}, {y: 120}],
label: 'Bar dataSet',
config: {
color: processColor('pink'),
drawBarShadow: true,
barShadowColor: processColor('red'),
highlightAlpha: 90,
highlightColor: processColor('red'),
}
}],
config: {
barWidth: 0.7,
}
},
highlights: [{x: 3}, {x: 6}],
xAxis: {
valueFormatter: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'oct'],
granularityEnabled: true,
position: 'BOTTOM',
granularity : 1,
},
yAxis: {
left:{axisMinimum: 10}}
};
}
handleSelect(event) {
let entry = event.nativeEvent
if (entry == null) {
this.setState({...this.state, selectedEntry: null})
} else {
this.setState({...this.state, selectedEntry: JSON.stringify(entry)})
}
console.log(event.nativeEvent)
}
render() {
return (
<View style={{flex: 1}}>
<View style={{height:80}}>
<Text> selected entry</Text>
<Text> {this.state.selectedEntry}</Text>
</View>
<View style={styles.container}>
<BarChart
style={styles.chart}
data={this.state.data}
xAxis={this.state.xAxis}
animation={{durationX: 2000}}
legend={this.state.legend}
gridBackgroundColor={processColor('#000000')}
visibleRange={{x: { min: 5, max: 5 }}}
drawBarShadow={false}
drawValueAboveBar={true}
drawHighlightArrow={true}
onSelect={this.handleSelect.bind(this)}
highlights={this.state.highlights}
onChange={(event) => console.log(event.nativeEvent)}
/>
</View>
</View>
);
}
}
Is there any other library for the requirement or react-native-charts-wrapper inbuilt have any method to export it in base64.
javascript react-native react-native-android react-native-ios react-native-charts-wrapper
add a comment |
up vote
0
down vote
favorite
I'm working on a react native application where I want to show data in the chart and then export the chart to PNG or Base64 image.
I'm using react-native-charts-wrapper library where I'm able to show the data in charts but not in able to convert it to base64 or png.
below is my code:
export default class App extends React.Component {
constructor() {
super();
this.state = {
legend: {
enabled: true,
textSize: 14,
form: 'SQUARE',
formSize: 14,
xEntrySpace: 10,
yEntrySpace: 5,
formToTextSpace: 5,
wordWrapEnabled: true,
maxSizePercent: 0.5
},
data: {
dataSets: [{
values: [{y: 100}, {y: 105}, {y: 102}, {y: 110}, {y: 114}, {y:
109}, {y: 105}, {y: 99}, {y: 120}],
label: 'Bar dataSet',
config: {
color: processColor('pink'),
drawBarShadow: true,
barShadowColor: processColor('red'),
highlightAlpha: 90,
highlightColor: processColor('red'),
}
}],
config: {
barWidth: 0.7,
}
},
highlights: [{x: 3}, {x: 6}],
xAxis: {
valueFormatter: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'oct'],
granularityEnabled: true,
position: 'BOTTOM',
granularity : 1,
},
yAxis: {
left:{axisMinimum: 10}}
};
}
handleSelect(event) {
let entry = event.nativeEvent
if (entry == null) {
this.setState({...this.state, selectedEntry: null})
} else {
this.setState({...this.state, selectedEntry: JSON.stringify(entry)})
}
console.log(event.nativeEvent)
}
render() {
return (
<View style={{flex: 1}}>
<View style={{height:80}}>
<Text> selected entry</Text>
<Text> {this.state.selectedEntry}</Text>
</View>
<View style={styles.container}>
<BarChart
style={styles.chart}
data={this.state.data}
xAxis={this.state.xAxis}
animation={{durationX: 2000}}
legend={this.state.legend}
gridBackgroundColor={processColor('#000000')}
visibleRange={{x: { min: 5, max: 5 }}}
drawBarShadow={false}
drawValueAboveBar={true}
drawHighlightArrow={true}
onSelect={this.handleSelect.bind(this)}
highlights={this.state.highlights}
onChange={(event) => console.log(event.nativeEvent)}
/>
</View>
</View>
);
}
}
Is there any other library for the requirement or react-native-charts-wrapper inbuilt have any method to export it in base64.
javascript react-native react-native-android react-native-ios react-native-charts-wrapper
Check with github.com/gre/react-native-view-shot library. It capture the View.
– Asha
Nov 20 at 11:47
@Asha Thanks for the quick response but my chart is scrollable so if I take the screenshot it will not full and always be the visible chart on the screen.
– Mayank Shrivastava
Nov 20 at 13:16
Did you try long short capture? github.com/gre/react-native-view-shot/issues/99 -
– Asha
Nov 20 at 13:26
@Asha I tried the above solution but my chart is not inside scrollview and its Barchart is itself scrollable as there are large data on x-axis and it's only capturing the bars available on the screen, not the remaining bars which are visible only on scrolling.
– Mayank Shrivastava
Nov 21 at 6:01
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm working on a react native application where I want to show data in the chart and then export the chart to PNG or Base64 image.
I'm using react-native-charts-wrapper library where I'm able to show the data in charts but not in able to convert it to base64 or png.
below is my code:
export default class App extends React.Component {
constructor() {
super();
this.state = {
legend: {
enabled: true,
textSize: 14,
form: 'SQUARE',
formSize: 14,
xEntrySpace: 10,
yEntrySpace: 5,
formToTextSpace: 5,
wordWrapEnabled: true,
maxSizePercent: 0.5
},
data: {
dataSets: [{
values: [{y: 100}, {y: 105}, {y: 102}, {y: 110}, {y: 114}, {y:
109}, {y: 105}, {y: 99}, {y: 120}],
label: 'Bar dataSet',
config: {
color: processColor('pink'),
drawBarShadow: true,
barShadowColor: processColor('red'),
highlightAlpha: 90,
highlightColor: processColor('red'),
}
}],
config: {
barWidth: 0.7,
}
},
highlights: [{x: 3}, {x: 6}],
xAxis: {
valueFormatter: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'oct'],
granularityEnabled: true,
position: 'BOTTOM',
granularity : 1,
},
yAxis: {
left:{axisMinimum: 10}}
};
}
handleSelect(event) {
let entry = event.nativeEvent
if (entry == null) {
this.setState({...this.state, selectedEntry: null})
} else {
this.setState({...this.state, selectedEntry: JSON.stringify(entry)})
}
console.log(event.nativeEvent)
}
render() {
return (
<View style={{flex: 1}}>
<View style={{height:80}}>
<Text> selected entry</Text>
<Text> {this.state.selectedEntry}</Text>
</View>
<View style={styles.container}>
<BarChart
style={styles.chart}
data={this.state.data}
xAxis={this.state.xAxis}
animation={{durationX: 2000}}
legend={this.state.legend}
gridBackgroundColor={processColor('#000000')}
visibleRange={{x: { min: 5, max: 5 }}}
drawBarShadow={false}
drawValueAboveBar={true}
drawHighlightArrow={true}
onSelect={this.handleSelect.bind(this)}
highlights={this.state.highlights}
onChange={(event) => console.log(event.nativeEvent)}
/>
</View>
</View>
);
}
}
Is there any other library for the requirement or react-native-charts-wrapper inbuilt have any method to export it in base64.
javascript react-native react-native-android react-native-ios react-native-charts-wrapper
I'm working on a react native application where I want to show data in the chart and then export the chart to PNG or Base64 image.
I'm using react-native-charts-wrapper library where I'm able to show the data in charts but not in able to convert it to base64 or png.
below is my code:
export default class App extends React.Component {
constructor() {
super();
this.state = {
legend: {
enabled: true,
textSize: 14,
form: 'SQUARE',
formSize: 14,
xEntrySpace: 10,
yEntrySpace: 5,
formToTextSpace: 5,
wordWrapEnabled: true,
maxSizePercent: 0.5
},
data: {
dataSets: [{
values: [{y: 100}, {y: 105}, {y: 102}, {y: 110}, {y: 114}, {y:
109}, {y: 105}, {y: 99}, {y: 120}],
label: 'Bar dataSet',
config: {
color: processColor('pink'),
drawBarShadow: true,
barShadowColor: processColor('red'),
highlightAlpha: 90,
highlightColor: processColor('red'),
}
}],
config: {
barWidth: 0.7,
}
},
highlights: [{x: 3}, {x: 6}],
xAxis: {
valueFormatter: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'oct'],
granularityEnabled: true,
position: 'BOTTOM',
granularity : 1,
},
yAxis: {
left:{axisMinimum: 10}}
};
}
handleSelect(event) {
let entry = event.nativeEvent
if (entry == null) {
this.setState({...this.state, selectedEntry: null})
} else {
this.setState({...this.state, selectedEntry: JSON.stringify(entry)})
}
console.log(event.nativeEvent)
}
render() {
return (
<View style={{flex: 1}}>
<View style={{height:80}}>
<Text> selected entry</Text>
<Text> {this.state.selectedEntry}</Text>
</View>
<View style={styles.container}>
<BarChart
style={styles.chart}
data={this.state.data}
xAxis={this.state.xAxis}
animation={{durationX: 2000}}
legend={this.state.legend}
gridBackgroundColor={processColor('#000000')}
visibleRange={{x: { min: 5, max: 5 }}}
drawBarShadow={false}
drawValueAboveBar={true}
drawHighlightArrow={true}
onSelect={this.handleSelect.bind(this)}
highlights={this.state.highlights}
onChange={(event) => console.log(event.nativeEvent)}
/>
</View>
</View>
);
}
}
Is there any other library for the requirement or react-native-charts-wrapper inbuilt have any method to export it in base64.
javascript react-native react-native-android react-native-ios react-native-charts-wrapper
javascript react-native react-native-android react-native-ios react-native-charts-wrapper
asked Nov 20 at 11:39
Mayank Shrivastava
95111
95111
Check with github.com/gre/react-native-view-shot library. It capture the View.
– Asha
Nov 20 at 11:47
@Asha Thanks for the quick response but my chart is scrollable so if I take the screenshot it will not full and always be the visible chart on the screen.
– Mayank Shrivastava
Nov 20 at 13:16
Did you try long short capture? github.com/gre/react-native-view-shot/issues/99 -
– Asha
Nov 20 at 13:26
@Asha I tried the above solution but my chart is not inside scrollview and its Barchart is itself scrollable as there are large data on x-axis and it's only capturing the bars available on the screen, not the remaining bars which are visible only on scrolling.
– Mayank Shrivastava
Nov 21 at 6:01
add a comment |
Check with github.com/gre/react-native-view-shot library. It capture the View.
– Asha
Nov 20 at 11:47
@Asha Thanks for the quick response but my chart is scrollable so if I take the screenshot it will not full and always be the visible chart on the screen.
– Mayank Shrivastava
Nov 20 at 13:16
Did you try long short capture? github.com/gre/react-native-view-shot/issues/99 -
– Asha
Nov 20 at 13:26
@Asha I tried the above solution but my chart is not inside scrollview and its Barchart is itself scrollable as there are large data on x-axis and it's only capturing the bars available on the screen, not the remaining bars which are visible only on scrolling.
– Mayank Shrivastava
Nov 21 at 6:01
Check with github.com/gre/react-native-view-shot library. It capture the View.
– Asha
Nov 20 at 11:47
Check with github.com/gre/react-native-view-shot library. It capture the View.
– Asha
Nov 20 at 11:47
@Asha Thanks for the quick response but my chart is scrollable so if I take the screenshot it will not full and always be the visible chart on the screen.
– Mayank Shrivastava
Nov 20 at 13:16
@Asha Thanks for the quick response but my chart is scrollable so if I take the screenshot it will not full and always be the visible chart on the screen.
– Mayank Shrivastava
Nov 20 at 13:16
Did you try long short capture? github.com/gre/react-native-view-shot/issues/99 -
– Asha
Nov 20 at 13:26
Did you try long short capture? github.com/gre/react-native-view-shot/issues/99 -
– Asha
Nov 20 at 13:26
@Asha I tried the above solution but my chart is not inside scrollview and its Barchart is itself scrollable as there are large data on x-axis and it's only capturing the bars available on the screen, not the remaining bars which are visible only on scrolling.
– Mayank Shrivastava
Nov 21 at 6:01
@Asha I tried the above solution but my chart is not inside scrollview and its Barchart is itself scrollable as there are large data on x-axis and it's only capturing the bars available on the screen, not the remaining bars which are visible only on scrolling.
– Mayank Shrivastava
Nov 21 at 6:01
add a comment |
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53392225%2fexport-react-native-charts-wrapper-to-png%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53392225%2fexport-react-native-charts-wrapper-to-png%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Check with github.com/gre/react-native-view-shot library. It capture the View.
– Asha
Nov 20 at 11:47
@Asha Thanks for the quick response but my chart is scrollable so if I take the screenshot it will not full and always be the visible chart on the screen.
– Mayank Shrivastava
Nov 20 at 13:16
Did you try long short capture? github.com/gre/react-native-view-shot/issues/99 -
– Asha
Nov 20 at 13:26
@Asha I tried the above solution but my chart is not inside scrollview and its Barchart is itself scrollable as there are large data on x-axis and it's only capturing the bars available on the screen, not the remaining bars which are visible only on scrolling.
– Mayank Shrivastava
Nov 21 at 6:01