Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to display graph with dynamic values in android. I have written the following code for displaying the graph. The graph is being displayed successfully. When I pass same values to that array graph is not being displayed. This is code:

final ChartView chartView = (ChartView) findViewById(R.id.chartView);

    ChartPalette palette = new ChartPalette(0xffffd7e8);
    chartView.setPalette(palette);
    final ChartSeries product1 = new ChartSeries("P1", ChartTypes.Column);

    final ChartView chartView1 = (ChartView) findViewById(R.id.chartView1);
    ChartPalette palette1 = new ChartPalette(0xffffd7e8);
    chartView1.setPalette(palette1);
    final ChartSeries product2 = new ChartSeries("P2", ChartTypes.Column);


    final ChartView chartView2 = (ChartView) findViewById(R.id.chartView2);
    ChartPalette palette2= new ChartPalette(0xffffd7e8);
    chartView2.setPalette(palette2);
    final ChartSeries product3 = new ChartSeries("P2", ChartTypes.Column);



    spinner1 = (Spinner) findViewById(R.id.spinner1);
    spinner1.setOnItemSelectedListener(new OnItemSelectedListener() {

        @Override
        public void onItemSelected(AdapterView<?> arg0, View arg1, int arg2,
                long arg3) {
            // TODO Auto-generated method stub

            int position=spinner1.getSelectedItemPosition();
            System.out.println("=====ITEM POSITION======"+position);

            final String selected=arg0.getItemAtPosition(arg2).toString();
            System.out.println("=====IN SELECTED======"+selected);

            if(position==0)
            {
            db.open();
            Cursor customer=db.fetchorderCustomername(selected);
            custid=customer.getString(0);
            System.out.println("=====CUSTOMER NAME ID======"+custid);
            Cursor cursor=db.fetchorderDetails(custid);
            count=cursor.getCount();
            System.out.println("=====COUNT======"+count);

                   int i=0;
                    while (i<count)
                    {
                        String productid=cursor.getString(1);
                        prodctnames[i]=productid;

                        String qty=cursor.getString(2);
                        product_1[i]=Double.parseDouble(qty);
                        System.out.println("=====PROID======"+prodctnames[i]+"=====QUANTITY======"+product_1[i]);
                        cursor.moveToNext();
                        i++;


                        //customerdetails=new Sample(productid,qty);

                    }


                    for (int j = 0; j < count; j++)
                    {
                        ChartPoint point = product1.getPoints().addXY(j, product_1[j]);
                        point.setAxisLabel(prodctnames[j]);
                    }

                       chartView.getSeries().add(product1);


                      ChartArea area = chartView.getAreas().get(0);

                    area.getDefaultXAxis().setLabelsMode(ChartAxis.LabelsMode.SeriesLabels);
                    db.close();

            }


            if(position==1)
            {
                chartView.setVisibility(View.GONE);
            db.open();
            Cursor customer=db.fetchorderCustomername(selected);
            custid=customer.getString(0);
            System.out.println("=====CUSTOMER NAME ID======"+custid);
            Cursor cursor=db.fetchorderDetails(custid);
            count=cursor.getCount();
            System.out.println("=====COUNT======"+count);

                   int i=0;
                    while (i<count)
                    {
                        String productid=cursor.getString(1);
                        prodctnames[i]=productid;

                        String qty=cursor.getString(2);
                        product_1[i]=Double.parseDouble(qty);
                        System.out.println("=====PROID======"+prodctnames[i]+"=====QUANTITY======"+product_1[i]);
                        cursor.moveToNext();
                        i++;


                        //customerdetails=new Sample(productid,qty);

                    }


                    for (int j = 0; j < count; j++)
                    {
                        ChartPoint point = product2.getPoints().addXY(j, product_1[j]);
                        point.setAxisLabel(prodctnames[j]);
                    }

                       chartView1.getSeries().add(product2);


                      ChartArea area = chartView1.getAreas().get(0);

                    area.getDefaultXAxis().setLabelsMode(ChartAxis.LabelsMode.SeriesLabels);
                    db.close();

            }

            if(position==2)
            {

                chartView1.setVisibility(View.GONE);

            db.open();
            Cursor customer=db.fetchorderCustomername(selected);
            custid=customer.getString(0);
            System.out.println("=====CUSTOMER NAME ID======"+custid);
            Cursor cursor=db.fetchorderDetails(custid);
            count=cursor.getCount();
            System.out.println("=====COUNT======"+count);

                   int i=0;
                    while (i<count)
                    {
                        String productid=cursor.getString(1);
                        prodctnames[i]=productid;

                        String qty=cursor.getString(2);
                        product_1[i]=Double.parseDouble(qty);
                        System.out.println("=====PROID======"+prodctnames[i]+"=====QUANTITY======"+product_1[i]);
                        cursor.moveToNext();
                        i++;


                        //customerdetails=new Sample(productid,qty);

                    }


                    for (int j = 0; j < count; j++)
                    {
                        ChartPoint point = product3.getPoints().addXY(j, product_1[j]);
                        point.setAxisLabel(prodctnames[j]);
                    }

                       chartView2.getSeries().add(product3);


                      ChartArea area = chartView2.getAreas().get(0);

                    area.getDefaultXAxis().setLabelsMode(ChartAxis.LabelsMode.SeriesLabels);
                    db.close();

            }
        }

        @Override
        public void onNothingSelected(AdapterView<?> arg0) {
            // TODO Auto-generated method stub

        }
    });

The graph is displayed successfully. When I select one customer name more then once the app gets closed. Please see once and let me know where I am making a mistake. Thanks in Advance...

share|improve this question
how can i repaint the graph if i select more than one customer ? – user1802043 Nov 20 '12 at 4:57

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.