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;








-3















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...










share|improve this question


























  • 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


















-3















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...










share|improve this question


























  • 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














-3












-3








-3








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...










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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


















  • 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













1 Answer
1






active

oldest

votes


















0














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.







share|improve this answer
























    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
    );



    );













    draft saved

    draft discarded


















    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









    0














    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.







    share|improve this answer





























      0














      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.







      share|improve this answer



























        0












        0








        0







        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.







        share|improve this answer













        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.








        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 27 at 8:21









        ibrahimyilmazibrahimyilmaz

        1,56315 silver badges25 bronze badges




        1,56315 silver badges25 bronze badges





















            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.



















            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript