AnyChart-Android icon indicating copy to clipboard operation
AnyChart-Android copied to clipboard

Clone the project and run, but it show empty of all chars

Open parcool opened this issue 3 years ago • 8 comments

I just clone the project and run, what did I wrong?

https://user-images.githubusercontent.com/12092478/124549666-11b26f80-de62-11eb-90b3-8de402cc485f.mp4

parcool avatar Jul 06 '21 05:07 parcool

Same issue I am also facing. Please provide solution as I have already used this in our project

parthitechnotion avatar Jul 09 '21 14:07 parthitechnotion

@parcool @parthitechnotion Please, check the Quick Start guide, it describes how to launch the framework in your projects.

Shestac92 avatar Jul 12 '21 10:07 Shestac92

@Shestac92 nope, I got same empty result following the Quick Start guide. Running Android 11, and v1.1.4 implementation 'com.github.AnyChart:AnyChart-Android:1.1.4'

vasiledoe avatar Aug 14 '21 19:08 vasiledoe

I have the same problem with the latest Android Studio. Just cloned the project and run the sample module from there. The sample In the repo doesn't work. API29.

Sicness avatar Aug 21 '21 19:08 Sicness

The same If I follow the Getting started guide for my own project. Empty view charts with text AnyChart Trial Version. Wasted time...

Sicness avatar Aug 27 '21 13:08 Sicness

BTW, 'com.github.AnyChart:AnyChart-Android:1.1.2' works fine!

Sicness avatar Aug 27 '21 14:08 Sicness

I just cloned and build but empty. My sdk compile verion is 31. Please help me...

pinefirst avatar Jul 24 '23 07:07 pinefirst

Verify if code append data in AnyChart.pie(); example:

            Pie pie = AnyChart.pie();
            List<DataEntry> data = new ArrayList<>();
            data.add(new ValueDataEntry("John", 10000));
            data.add(new ValueDataEntry("Jake", 12000));
            data.add(new ValueDataEntry("Peter", 18000));
            pie.data(data);
            AnyChartView anyChartView = (AnyChartView) findViewById(R.id.graph);
            anyChartView.setChart(pie);

viniciushrk avatar Nov 25 '23 09:11 viniciushrk