How to add Pie Chart with API-Data in my Android projectHow to save an Android Activity state using save instance state?Fling gesture detection on grid layoutWhy is the Android emulator so slow? How can we speed up the Android emulator?How do I pass data between Activities in Android application?Dynamically add elements to a listView AndroidHow do I add a library project to Android Studio?Android Studio: Add jar as library?“cannot resolve symbol R” in Android StudioChanging API level Android StudioShow Pie chart in Android Application
Why do my fried eggs start browning very fast?
What does "autolyco-sentimental" mean?
Confused over role of 「自分が」in this particular passage
Are the "muddled thoughts" from Synaptic Static a magical effect?
Which honorific is correct, oshumi or goshumi?
Phase portrait of a system of differential equations
Speaker impedance: rewiring four 8 Ω speakers for use with 8 Ω amp output
Is there a general term for the items in a directory?
Has J.J.Jameson ever found out that Peter Parker is Spider-Man?
Why does Shift-right says it is bound to right?
Can you shove a friendly creature?
Why isn't the new LEGO CV joint available on Bricklink or Brickowl?
How to construct BezierFunction for BezierCurve with npts>4 and SplineDegree -> 3?
Being told my "network" isn't PCI compliant. I don't even have a server! Do I have to comply?
how to change ^L code in many files in ubuntu?
Why have both: BJT and FET transistors on IC output?
How does Rust's 128-bit integer `i128` work on a 64-bit system?
Is there any difference between "result in" and "end up with"?
Is the first page of Novel really that important?
Any information about the photo with Army Uniforms
Does WSL2 runs Linux in a virtual machine or alongside windows Kernel?
What is Albrecht Dürer's Perspective Machine drawing style?
Can an unintentional murderer leave Ir Miklat for Shalosh Regalim?
How do people drown while wearing a life jacket?
How to add Pie Chart with API-Data in my Android project
How to save an Android Activity state using save instance state?Fling gesture detection on grid layoutWhy is the Android emulator so slow? How can we speed up the Android emulator?How do I pass data between Activities in Android application?Dynamically add elements to a listView AndroidHow do I add a library project to Android Studio?Android Studio: Add jar as library?“cannot resolve symbol R” in Android StudioChanging API level Android StudioShow Pie chart in Android Application
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I want to add a Pie Chart from server api data in my Android project. If I have 95 car, 60 bus, 106 bicycle and so on. Please let me know if anyone have any suggestions...
android android-volley pie-chart
add a comment |
I want to add a Pie Chart from server api data in my Android project. If I have 95 car, 60 bus, 106 bicycle and so on. Please let me know if anyone have any suggestions...
android android-volley pie-chart
Check this chart library for android: github.com/PhilJay/MPAndroidChart
– ibrahimyilmaz
Mar 27 at 5:27
checked but how to implement volley "api data" on any chart ? if you have any idea please share with me..
– Parveen Haade
Mar 27 at 5:53
add a comment |
I want to add a Pie Chart from server api data in my Android project. If I have 95 car, 60 bus, 106 bicycle and so on. Please let me know if anyone have any suggestions...
android android-volley pie-chart
I want to add a Pie Chart from server api data in my Android project. If I have 95 car, 60 bus, 106 bicycle and so on. Please let me know if anyone have any suggestions...
android android-volley pie-chart
android android-volley pie-chart
edited Mar 27 at 9:56
Zoe
15.4k9 gold badges65 silver badges97 bronze badges
15.4k9 gold badges65 silver badges97 bronze badges
asked Mar 27 at 1:03
Parveen HaadeParveen Haade
511 silver badge11 bronze badges
511 silver badge11 bronze badges
Check this chart library for android: github.com/PhilJay/MPAndroidChart
– ibrahimyilmaz
Mar 27 at 5:27
checked but how to implement volley "api data" on any chart ? if you have any idea please share with me..
– Parveen Haade
Mar 27 at 5:53
add a comment |
Check this chart library for android: github.com/PhilJay/MPAndroidChart
– ibrahimyilmaz
Mar 27 at 5:27
checked but how to implement volley "api data" on any chart ? if you have any idea please share with me..
– Parveen Haade
Mar 27 at 5:53
Check this chart library for android: github.com/PhilJay/MPAndroidChart
– ibrahimyilmaz
Mar 27 at 5:27
Check this chart library for android: github.com/PhilJay/MPAndroidChart
– ibrahimyilmaz
Mar 27 at 5:27
checked but how to implement volley "api data" on any chart ? if you have any idea please share with me..
– Parveen Haade
Mar 27 at 5:53
checked but how to implement volley "api data" on any chart ? if you have any idea please share with me..
– Parveen Haade
Mar 27 at 5:53
add a comment |
1 Answer
1
active
oldest
votes
Just follow some basic tutorial and you need set data and refresh chart on response of your api.
Render an empty chart and call your request on onCreate method of activity:
initChart(); //init MPAndroidChart with empty data on this method.
callApi();
On your callApi method send your request to the server and do the following on onResponse:
pieChart.setData(data);
pieChart.notifyDataSetChanged();
pieChart.invalidate();
Tutorial example for charting
Try something and share your code with us then we can help you easier.
add a comment |
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',
autoActivateHeartbeat: false,
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%2f55368321%2fhow-to-add-pie-chart-with-api-data-in-my-android-project%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Just follow some basic tutorial and you need set data and refresh chart on response of your api.
Render an empty chart and call your request on onCreate method of activity:
initChart(); //init MPAndroidChart with empty data on this method.
callApi();
On your callApi method send your request to the server and do the following on onResponse:
pieChart.setData(data);
pieChart.notifyDataSetChanged();
pieChart.invalidate();
Tutorial example for charting
Try something and share your code with us then we can help you easier.
add a comment |
Just follow some basic tutorial and you need set data and refresh chart on response of your api.
Render an empty chart and call your request on onCreate method of activity:
initChart(); //init MPAndroidChart with empty data on this method.
callApi();
On your callApi method send your request to the server and do the following on onResponse:
pieChart.setData(data);
pieChart.notifyDataSetChanged();
pieChart.invalidate();
Tutorial example for charting
Try something and share your code with us then we can help you easier.
add a comment |
Just follow some basic tutorial and you need set data and refresh chart on response of your api.
Render an empty chart and call your request on onCreate method of activity:
initChart(); //init MPAndroidChart with empty data on this method.
callApi();
On your callApi method send your request to the server and do the following on onResponse:
pieChart.setData(data);
pieChart.notifyDataSetChanged();
pieChart.invalidate();
Tutorial example for charting
Try something and share your code with us then we can help you easier.
Just follow some basic tutorial and you need set data and refresh chart on response of your api.
Render an empty chart and call your request on onCreate method of activity:
initChart(); //init MPAndroidChart with empty data on this method.
callApi();
On your callApi method send your request to the server and do the following on onResponse:
pieChart.setData(data);
pieChart.notifyDataSetChanged();
pieChart.invalidate();
Tutorial example for charting
Try something and share your code with us then we can help you easier.
answered Mar 27 at 8:21
ibrahimyilmazibrahimyilmaz
1,56315 silver badges25 bronze badges
1,56315 silver badges25 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
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.
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%2f55368321%2fhow-to-add-pie-chart-with-api-data-in-my-android-project%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 this chart library for android: github.com/PhilJay/MPAndroidChart
– ibrahimyilmaz
Mar 27 at 5:27
checked but how to implement volley "api data" on any chart ? if you have any idea please share with me..
– Parveen Haade
Mar 27 at 5:53