Questions tagged [gwt-highcharts]

GWT Highcharts is a freely available open source library that provides an elegant and feature complete approach for including Highcharts and Highstock visualizations within a GWT application using pure Java code.

GWT Highcharts is a freely available open source library that provides an elegant and feature complete approach for including Highcharts and Highstock visualizations within a GWT application using pure Java code.

35 questions
0
votes
1 answer

adding points to series using Highchart using c#

I have implemented graphs and drawn series using the following code DotNet.Highcharts.HighCharts chart=new Highcharts.HighCharts("chart"); chart.SetSeries(new[] {new Series{Name="one",Data =new Data(new…
0
votes
1 answer

Displaying excess number of columns in heat map in highcharts

I'm using highcharts heat map in my project. I have 12 rows and 7 columns in my heat map. When i pass the data hard coded the chart is displaying as required with 12x7 matrix. Now i need to pass the data in a json object from my database. When i9 do…
0
votes
1 answer

Updating speedometer data from json object created with PHP script

Can someone tell me how to update the data into speedometer highchart from the Json object created using php script, Its working for bar charts and pie chart but i can't figure it out for the speedometer , The data formats is perfectly matching but…
0
votes
0 answers

Highcharts angular gauge chart

Can we print text across the angular gauge in highcharts representing the level of that value. For example if we have the gauge speedometer ranging from 0-100 km. i want to give 0-30 a different color and place a text across along its perimeter…
0
votes
0 answers

Hightchart: Invalid argument line 83 in IE8

I am using Highcharts JS v3.0.1 to draw a chart in one of page. The chart is working in FF, Chrome and IE9 even Saferi but not in IE8. I am getting the below error Invalid argument. highcharts.js, line 83 character 1 In line 86 I have the below…
ezhil
  • 977
  • 6
  • 15
  • 36
0
votes
1 answer

Getting values for nested HashMap

i have map and list inside map, and want to get the data for this map objects from db, can anyone suggest me please am i in a right way to getting the keys and values for both map on this code, i have an object A it contains an objects B with list…
user3721625
  • 267
  • 1
  • 3
  • 9
0
votes
1 answer

Make a text box appear on dragging point in highchart or an editable tooltip

I have implemented a drag-drop highchart. I want to play around the tooltip. I have added a textbox input field in the tooltip, the textbox appears, but I cannot write anything in the box. Here is a fiddle for my work…
nyxem1
  • 179
  • 1
  • 4
  • 16
0
votes
3 answers

GWT highcharts auto resize (width and height) in layout panel

When you open a chart inside the center zone of a DockLayoutPanel (inside a RootLayoutPanel), the first time the chart is rendered (possibly during onModuleLoad) the chart does not have the right height/width. The chart take the size of the…
Ronan Quillevere
  • 3,699
  • 1
  • 29
  • 44
0
votes
1 answer

Fast way of graphing db statistics onto a webpage

I currently have a MySQL database with a bunch of statistics about my data I record each day, a row/per day. These are numeric statistics, and I'm wondering what's the fastest way to retrieve the data and graph it as a line chart on a webpage? I'm…
Luke
  • 1,053
  • 2
  • 16
  • 26
0
votes
1 answer

Setting tick interval dynamically in highstock chart

I'm using GWT Highcharts api in my application. this is how it looks: as you can see there is a small shift between the columns and labels on the x axis. To fix this I wrote the following code: chart.getXAxis().setTickInterval(7 * 24 * 3600 *…
Mihail
  • 341
  • 1
  • 2
  • 11
0
votes
1 answer

Can you group multiple candlestick series next to each other in a highstock chart?

Is it possible to have multiple candlestick series on the same axis and have them grouped next to each other like columns? Right now,they render on top of each other if their y values are similar. I have tried the series options related to this(…
0
votes
0 answers

GWT Highcharts Donut Pie Chart

I have recently discovered highcharts and am practicing with them, but I cannot find any in depth tutorials on highcharts using gwt out there. I've looked everywhere and they all seem to be in javascript. I have looked at the moxie site, but I…
0
votes
1 answer

Add handler to chart to fire when any pixel on chart is clicked

I am using GWT wrapper by MoxieGroup for Highcharts. How can I make it so that any click anywhere on the chart will fire an event. Thought this might be the right starting point chart.addDomHandler(new ClickHandler() { @Override public void…
bubbles
  • 861
  • 4
  • 13
  • 30
0
votes
1 answer

GWT Highcharts legend.setOption("useHTML", true) disables clicking on legend item

in the GWT wrapper for highcharts, I want to customize my legend entries and still be able to click on them and make them hidden. I create a legend and do legend.setOption("useHTML", true) and then modify .highcharts-legend-item span some CSS…
bubbles
  • 861
  • 4
  • 13
  • 30
0
votes
1 answer

GWT Highcharts calling Javascript using JSNI

I am writing a GWT application and using highcharts. Some features are not implementable in Java but are in javascript. I was given an example of how to implement something I can use however, I do not know how to included in my code. My code…
bubbles
  • 861
  • 4
  • 13
  • 30