AnyChart / AnyChart-Android

AnyChart Android Chart is an amazing data visualization library for easily creating interactive charts in Android apps. It runs on API 19+ (Android 4.4) and features dozens of built-in chart types.
2.31k stars 369 forks source link

How to remove anychart trial version #110

Open wifirevaithi opened 5 years ago

wifirevaithi commented 5 years ago

Hi,

I Got a Key But I Don't Know How to Remove Trial Version Text

PRobi23 commented 5 years ago

What kind of version we need to buy to remove it? And how exactly we need to remove the trial version after buying the application. Thanks!

wifirevaithi commented 5 years ago

In my case trial version is removed but i can't remove "anychart" Unable To Resolve getCredits in chart.getCredits().setEnabled(false);

Shestac92 commented 5 years ago

@wifirevaithi @PRobi23 Please, update the library to the latest version and follow steps described in the wiki article to adjust or disable credits.

wifirevaithi commented 5 years ago

Already in Latest Version Bro "chart.getCredits()" Unable To Resolve getCredits() Can You Tell How To Intialize Chart? I'm Only Using chartview

PRobi23 commented 5 years ago

@Shestac92 thanks!

And what version do i need to buy? I want to use this product only in one android project.

Thanks again!

Shestac92 commented 5 years ago

@wifirevaithi @PRobi23 Please, excuse me for the link to the deprecated wiki article. The current version of credits API a little bit differs from the API described in the article. After applying your license key:

anyChartView.setLicenceKey("YOUR-LICENSE-KEY");

credits can be modified:

        ChartCredits credits = discountAreaChart.credits();
        credits.text("Custom text");
        credits.alt("Custom tooltip");
        credits.url("https://www.anychart.com/buy/");
        credits.logoSrc("https://static.anychart.com/images/github.png");

or disabled:

credits.enabled(false);
Shestac92 commented 5 years ago

@PRobi23 For choosing and purchasing a license for Android application, please, contact us sales@naychart.com or support@anychart.com

Shestac92 commented 5 years ago

@wifirevaithi @PRobi23 Thank you for pointing me to the issue, the wiki article was updated.