Questions tagged [android-highcharts]
9 questions
5
votes
0 answers
Android app built with "make project" crashes, but not when installed with "Run"
We're building an app which uses HighCharts Android wrapper library*.
During development, the app is installed on devices/emulators via the Run command, and everything works fine.
But, when making a build view Make Project, Generate Signed APK, or…

Mardann
- 1,953
- 1
- 16
- 23
1
vote
0 answers
Is there an ordinal setting in High Charts for Android / iOS?
I've come up across an issue which I cannot seem to solve on Android and iOS.
I have a chart that plots data which has the x-axis as a date time. The issue I'm having is that the data I have only has data points during a working week (i.e. Monday -…

Daniel Grima
- 2,765
- 7
- 34
- 58
1
vote
1 answer
Android Highchart bar chart add a text below a bar
I am displaying a bar chart in my android app with data labels. The highchart excepts only numeric value, although I have tried to use string as values the chart doesn't render. Below is my code
public void golyChartView(Number prev,Number curr)
{
…

Moeez
- 494
- 9
- 55
- 147
1
vote
1 answer
Android highcharts how to enable or disable data labels
I am working on android. By using highchart I have created a barchart.
HIOptions options = new HIOptions();
HIChart chart = new HIChart();
chart.setType("bar");
options.setChart(chart);
HITitle title = new HITitle();
…

Moeez
- 494
- 9
- 55
- 147
1
vote
0 answers
How to set Additional Data in highcharts series in android?
I'm new to the highcharts stocks lib in android.
I want to add additional data, calculated dynamicly on each mouseOver.
I made a screenshoot of the current one and a draw of my desired goal.
I searched in the documentation and tryed out some code,…

Ramon
- 11
- 2
0
votes
1 answer
Android highcharts display single entry bar chart
I am working on highcharts in android. I am trying to display a barchart with a single entry. Below is the code
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
…

Moeez
- 494
- 9
- 55
- 147
0
votes
0 answers
Highchart WebView throws IllegalStateException
When I use HIChartView in a layout that is inflated using AsyncLayoutInflater and added to a FrameLayout Highcharts throws java.lang.IllegalStateException. However if I switch to traditional LayoutInflater no exception is…

Eray Ocak
- 1
- 1
0
votes
1 answer
Highcharts Graph not recreating on same Android activity
I am using Android Highcharts Graph Library in my project.
https://github.com/highcharts/highcharts-android
I have Four Buttons Day, Hour, Minute, Week as below image.
When Activity starts first time it works fine, Graph is also showing correctly…

Abhishek kumar
- 4,347
- 8
- 29
- 44
0
votes
1 answer
Android HighCharts Library returns Error:Failed to resolve: com.highsoft.highcharts:6.0.2:
A few days ago I saw HighCharts Library is available for Android for graph.
https://github.com/highcharts/highcharts-android
I read the documentation and start it to add on my project but when I am trying to add gradle to my project I'm getting…

Abhishek kumar
- 4,347
- 8
- 29
- 44