Activity for GWT Highcharts

  • Ram Ram posted a comment on discussion General Discussion

    I know I am asking this very late, but by any chance did you get the solution or work around?

  • KARTIKEYAN KARTIKEYAN modified a comment on discussion General Discussion

    I have created a Chart and Data table. I need to add few custom texts like date and an image in the end of the chart and that to be appear in export as well. I have found the following example http://jsfiddle.net/ur02w4j5/12/ where, var label = this.renderer.label("This text will adjust to chart resizing " + "and redraws and will be visible on exported images.") .css({ width: '400px', fontSize: '9px' }) .attr({ 'stroke': 'silver', 'stroke-width': 1, 'r': 2, 'padding': 5 }) .add(); label.align(Highcharts.extend(label.getBBox(),...

  • KARTIKEYAN KARTIKEYAN modified a comment on discussion General Discussion

    How to change chart title and subtitle after Drill Down and back to same title and subtitle after Drill up? I have analyzed the following example, http://jsfiddle.net/axdcLmfx/ But I am not able to find any methods related to this in DrilDown API in highchartsv1.7.0. A showcase example would be much more helpfull. Please help. If there is no support available also please let me know .

  • KARTIKEYAN KARTIKEYAN posted a comment on discussion General Discussion

    How to change chart title and subtitle after Drill Down and back to same title and subtitle after Drill up? I have analyzed the following example, http://jsfiddle.net/axdcLmfx/ But I am not able to find any methods related to this in DrilDown API in highchartsv1.7.0. A showcase example would be much more helpfull. Please help.

  • KARTIKEYAN KARTIKEYAN modified a comment on discussion General Discussion

    I have created a Chart and Data table. I need to add few custom texts like date and an image in the end of the chart and that to be appear in export as well. I have found the following example http://jsfiddle.net/ur02w4j5/12/ where, var label = this.renderer.label("This text will adjust to chart resizing " + "and redraws and will be visible on exported images.") .css({ width: '400px', fontSize: '9px' }) .attr({ 'stroke': 'silver', 'stroke-width': 1, 'r': 2, 'padding': 5 }) .add(); label.align(Highcharts.extend(label.getBBox(),...

  • KARTIKEYAN KARTIKEYAN posted a comment on discussion General Discussion

    I have created a Chart and Data table. I need to add few custom texts like date and an image in the end of the chart and that to be appear in export as well. I have found the following example http://jsfiddle.net/ur02w4j5/12/ where, var label = this.renderer.label("This text will adjust to chart resizing " + "and redraws and will be visible on exported images.") .css({ width: '400px', fontSize: '9px' }) .attr({ 'stroke': 'silver', 'stroke-width': 1, 'r': 2, 'padding': 5 }) .add(); label.align(Highcharts.extend(label.getBBox(),...

  • KARTIKEYAN KARTIKEYAN posted a comment on discussion General Discussion

    A temporary hack was done using CSS to resolve the data table getting added on top of chart body > .highcharts-data-table { display: none !important; }

  • KARTIKEYAN KARTIKEYAN modified a comment on discussion General Discussion

    Hi Shawn, I am facing a problem after I do 'Export as pdf' or 'any image' files when 'data table' is present. The same data table is getting (added) printed on the screen and there after 'Drill Up' and 'Export' is not working.Even If I navigate to someother page ,the data table which got printed(added) remains same unless I reload the entire application. But this issue is not there when 'data table' is not present. Please help!

  • KARTIKEYAN KARTIKEYAN modified a comment on discussion General Discussion

    Hi Shawn, I am facing a problem after I do 'Export as pdf' or 'any image' files when 'data table' is present. The data same data table is getting (added) printed on the screen and there after 'Drill Up' and 'Export' is not working.Even If I navigate to someother page ,the data table which got printed(added) remains same unless I reload the entire application. But this issue is not there when 'data table' is not present. Please help!

  • KARTIKEYAN KARTIKEYAN posted a comment on discussion General Discussion

    Hi Shawn, I am facing a problem after I do 'Export as pdf' or 'any image' files when 'data table' is present. The data same data table is getting printed on the screen and there after 'Drill Up' and 'Export' is not working.Even If I navigate to someother page ,the data table which got printed remains same unless I reload the entire application. But this issue is not there when 'data table' is not present. Please help!

  • KARTIKEYAN KARTIKEYAN posted a comment on discussion General Discussion

    Hi Shawn, I have found the problem, I have not added <script src="https://code.highcharts.com/modules/export-data.js"></script> in Application.html. Thank you so much for your support.'

  • KARTIKEYAN KARTIKEYAN posted a comment on discussion General Discussion

    Hi Shawn, When I built as war file, drilll down worked fine . The problem was with the Dev Mode. But still the table is not appearing even in war. Can you please add this as an example to your show case? It would be helpfull. Thanks,

  • KARTIKEYAN KARTIKEYAN posted a comment on discussion General Discussion

    Related to show table I did as per your suggestion chart.setExporting( new Exporting().setOption( "showTable", true ) ); But table didn't appear below the chart.

  • KARTIKEYAN KARTIKEYAN posted a comment on discussion General Discussion

    Hi Shawn, Thanks for the beautiful demo.It was help full. But I am facing problem in my setup with LINE and SPLINE charts. I used the same code and replced the PIE with 'LINE' and 'SPLINE' chart , I faced the same problem of not going back. Moreover when I used the same PIE chart ,I didn't face this problem until I click the Pie Chart. After I click the pie chart it cleared all the points and stopped there . It threw the following in the console, NS_ERROR_FAILURE: Failure @ https://code.highcharts.com/highcharts.js:57...

  • Shawn Quinn Shawn Quinn posted a comment on discussion General Discussion

    Regarding the exporting.showTable parameter, you should be able to set that up using the "setOption" method. E.g. final Chart chart = new Chart() .setType(Series.Type.BAR) .setExporting(new Exporting() .setEnabled(true) .setOption("showTable", true) ); Regarding the drilldown, there is a sample in the showcase that shows the "Back To" button operating correctly which you may be able to get some pointers from here: http://www.moxiegroup.com/moxieapps/gwt-highcharts/showcase/#dynamic-column-drilldown...

  • KARTIKEYAN KARTIKEYAN modified a comment on discussion General Discussion

    I am creating charts using Highcharts GWT APIs. I would also like to create tables for the corresponding chart data. When I explored, I found http://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/export-data/showtable/ The following java script will enable the table exporting: { showTable: true } But I am not able to find this API in 'highcharts-1.7.0.jar' I can implement custom logic for this.But I am using Drill Down APIs hence I want the table also to be...

  • KARTIKEYAN KARTIKEYAN posted a comment on discussion General Discussion

    I am creating charts using Highcharts GWT APIs. I would also like to create tables for the corresponding chart data. When I explored, I found http://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/export-data/showtable/ The following java script will enable the table exporting: { showTable: true } But I am not able to find this API in 'highcharts-1.7.0.jar' I can implement custom logic for this.But I am using Drill Down APIs hence I want the table also to be...

  • KARTIKEYAN KARTIKEYAN posted a comment on discussion General Discussion

    I have resolved this. The issue was with the below code, GaugePlotOptions plotOptions = new GaugePlotOptions(); // plotOptions.setStacking( Stacking.NORMAL ); <<--- CULPRIT Set 'Stacking' in 'GaugePlotOptions' was causing the exception. Once it is removed Chart appeared in the panel.

  • KARTIKEYAN KARTIKEYAN modified a comment on discussion General Discussion

    I am trying to add a 'Chart' (HighCharts-Angular Gauge) to a Flow Panel. While adding I getting the below exception com.google.gwt.event.shared.UmbrellaException: Exception caught: (TypeError) @org.moxieapps.gwt.highcharts.client.BaseChart::nativeRenderChart(Ljava/lang/String;Lcom/google/gwt/core/client/JavaScriptObject;ZZLcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;)([string:...

  • KARTIKEYAN KARTIKEYAN modified a comment on discussion General Discussion

    I am trying to add a 'Chart' (HighCharts-Angular Gauge) to a Flow Panel. While adding I getting the below exception com.google.gwt.event.shared.UmbrellaException: Exception caught: (TypeError) @org.moxieapps.gwt.highcharts.client.BaseChart::nativeRenderChart(Ljava/lang/String;Lcom/google/gwt/core/client/JavaScriptObject;ZZLcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;)([string:...

  • KARTIKEYAN KARTIKEYAN posted a comment on discussion General Discussion

    I am trying to add a 'Chart' (HighCharts-Angular Gauge) to a Flow Panel. While adding I getting the below exception com.google.gwt.event.shared.UmbrellaException: Exception caught: (TypeError) @org.moxieapps.gwt.highcharts.client.BaseChart::nativeRenderChart(Ljava/lang/String;Lcom/google/gwt/core/client/JavaScriptObject;ZZLcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;Lcom/google/gwt/core/client/JavaScriptObject;)([string:...

  • bravestar bravestar modified a comment on discussion General Discussion

  • bravestar bravestar modified a comment on discussion General Discussion

  • bravestar bravestar modified a comment on discussion General Discussion

    Hi, is it possible to group the categories like this in GWT: http://blacklabel.github.io/grouped_categories/

  • bravestar bravestar posted a comment on discussion General Discussion

    Hi, is it possible to group the categories like this: http://blacklabel.github.io/grouped_categories/

  • Bruno Bravo Bruno Bravo modified a comment on discussion General Discussion

    Hi Adam Gzella, thanks for sharing a workaround :)

  • Bruno Bravo Bruno Bravo modified a comment on discussion General Discussion

    Hi Adam Gzella, Did you solve this issue? I'm facing some problems regarding Area range chart using Points instead of Number[][]. I do need to use points because I need to set userdata. I figured out the same thing as you. Method 'addPointScalarValues' in 'BaseChart' seems not correct.

  • Bruno Bravo Bruno Bravo posted a comment on discussion General Discussion

    Hi Adam Gzella, Did you solve this issue? I'm facing some problems regarding Area range chart using Points instead of Number[][]. I do need to use points because I need to set userdata. I figured out the same thing as you. Method 'addPointScalarValues' in 'BaseChart' seems not correct.

  • Shawn Quinn Shawn Quinn posted a comment on discussion General Discussion

    I don't have a use case chart handy that attempts to use the drilldown functionality with categories to try your particular use case, but thought I'd share that you can also just implement the drilldown logic on your own by responding to the "series click events" and then providing a button or some other way to reset back to the original series. E.g. here's a rough example of how to setup a drilldown with categories when the user clicks on any point in a series, and then returning to the original...

  • Shawn Quinn Shawn Quinn posted a comment on discussion General Discussion

    Well, some somewhat good news on this. We recently found a way to reproduce this issue in one of our GWT apps, which allowed us to dig into it a bit more and find a work around. We confirmed the issue is not with the GWT Highcharts wrapper, but rather within highcharts.js there seems to be code that is attempting to destroy the series data when the user switches places in the application - and then gets out of sync if the user returns to a place that contained the chart. E.g. if the user moves from...

  • Phil McLachlan Phil McLachlan posted a comment on discussion General Discussion

    Also, what do I do to show multiple series on drilldown?

  • Phil McLachlan Phil McLachlan posted a comment on discussion General Discussion

    Hi, I have developed a column chart using GWT HighCharts, and I set the x-axis categories with a call to chart.getXAxis().setCategories(false, categories), where categories is a string array. This produces the correct categories for my data. Now, I have added the ability to drilldown from one series to another. This also works. The problem is I have to set the categories differently for the drilldown data. What is the best way to do this? I tried setSeriesPlotOptions(new SeriesPlotOptions().setSeriesClickEventHandler...

  • Vatdam Leeway Vatdam Leeway modified a comment on discussion General Discussion

    Hi. I am a human to use your GWT Charts and have good everyday. And again I am waiting your chart to update everyday. When you have to update for every developer? Thank you for your labor every time.

  • Vatdam Leeway Vatdam Leeway posted a comment on discussion General Discussion

    Hi. I am a human to use your chart and have good everyday. And again I am waiting your chart to update everyday. When you have to update for every developer? Thank you for your labor every time.

  • sami sami posted a comment on discussion General Discussion

    Hi, First of all, big thank you for such a great GWT wrapper. I'm struggling with the way setColorByPoint works. I'd want to create 2 categories with each cat associated with 3 different colors. In short, every time I plot a point, I'd want to provide the color. I set categories this way : chart.getXAxis().setCategories("firstBar","secondBar") and plot point this way chart.addSeries(chart.createSeries() .setColorByPoint(true). .setName("myname") .addPoint(new Point(1).setColor(myColor))) But I don't...

  • Shawn Quinn Shawn Quinn posted a comment on discussion General Discussion

    Just a note that we started noticing a similar issue here in a couple of applications, but it seems to happen very randomly. I have not yet found a way to get the issue to be reproducible, so it's unclear to be if there's an issue in GWT Highcharts or if this an underlying Highcharts JS issue. If anyone can create a code example that reproduces the issue and post here, that would be much appreciated!

  • Ted Gardner Ted Gardner posted a comment on discussion General Discussion

    That sounds a lot like my issue, did you ever find a way to fix it?

  • Ted Gardner Ted Gardner modified a comment on discussion General Discussion

    Using moxie highcharts 1.6. Hi, I'm having some trouble with a chart I'm working with. When the user navigates away from a page, we call removeAllSeries through the onUnload method. However, sometimes when they return, a couple series remain on the chart. Events that use GWT code and interact with these series throw exceptions, which leads me to believe that the series exist in the JS object but not the BaseChart seriesList, which is why subsequent removeAllSeries calls do nothing to these phantom...

  • Ted Gardner Ted Gardner posted a comment on discussion General Discussion

    Using moxie highcharts 1.6. Hi, I'm having some trouble with a chart I'm working with. When the user navigates away from a page, we call removeAllSeries through the onUnload method. However, sometimes when they return, a couple series remain on the chart. Events that use GWT code and interact with these series throw exceptions, which leads me to believe that the series exist in the JS object but not the BaseChart seriesList. Has anyone experienced this issue before? Is this The widget that holds...

  • Tomasz Balawajder Tomasz Balawajder posted a comment on discussion General Discussion

    Hi, I have a problem with manually update extremes on charts. This is my code: private void syncExtremes(AxisSetExtremesEvent axisSetExtremesEvent) { if (chart.getXAxis().getExtremes() != null) { chart.getXAxis().setExtremes(axisSetExtremesEvent.getMin(), axisSetExtremesEvent.getMax()); } } I have this error in browser console: Uncaught TypeError: Cannot read property 'doubleValue_1_g$' of undefined

  • Joanna Joanna posted a comment on discussion General Discussion

    I also noticed that after invoking series.setPoints(Point[]) in this way (when it is called second or later time), series.getPoints() returns an empty array.

  • Joanna Joanna posted a comment on discussion General Discussion

    Hi, I'm, coming back to this issue, as it seems that in another plot I do need the update() method. I set points as before (series.setPoints(Point [])) and would like to additionally change the series name - which should be updated in the legend. Without the update() method, the legend displays old series name, and with update(), the plot itself doesn't update...

  • Tomasz Balawajder Tomasz Balawajder posted a comment on discussion General Discussion

    Sorry for late replay. It's simple example code that works properly with Highcharts 4.2.7 and doesn't work with Highcharts 5.0.0. Chart chart = new Chart() .setType(Series.Type.SCATTER) .setOptions3D(new Options3D() .setEnabled(true) .setAlpha(10) .setBeta(30) .setDepth(250) .setViewDistance(5)); chart.addSeries(chart.createSeries() .setName("Series") .setPoints(new Number[][] { {0, 0, 0} })); This is result with 4.2.7: and with 5.0.0:

  • Joanna Joanna modified a comment on discussion General Discussion

    It seems that without the update() method it works. Thanks,

  • Joanna Joanna posted a comment on discussion General Discussion

    It seems that without the update() method it works. Thanks, Joanna

  • Shawn Quinn Shawn Quinn posted a comment on discussion General Discussion

    I think the call to "update()" is what may be causing the problem there. Try just using "histogramSeries.setPoints()" by itself, which will internally automatically apply and draw the new points to the series in the chart. (Note that are also overloaded versions of "setPoints()" available that will allow you to control when the chart is redrawn if you're updating many series at once.) The "Series.update()" method is a newer method that is intended for a different use case (specifically for updating...

  • Joanna Joanna modified a comment on discussion General Discussion

    Sorry for the late reply, but I haven't noticed your answer until today. Taking the relevant part from my code, it looks like the example below: This works: Series histogramSeries = this.getSeries(histogramSeriesID); for (Point p : histogramSeries.getPoints()) { histogramSeries.removePoint(p, false, false); } for (Point p : points) { histogramSeries.addPoint(p, false, false, false); } histogramSeries.update(histogramSeries); This doesn't work (works only once): Series histogramSeries = this.getSeries(histogramSeriesID);...

  • Joanna Joanna posted a comment on discussion General Discussion

    Sorry for the late reply, but I haven't noticed your answer until today. Taking the relevant part from my code, it looks like the example below: This works: Series histogramSeries = this.getSeries(histogramSeriesID); for (Point p : histogramSeries.getPoints()) { histogramSeries.removePoint(p, false, false); } for (Point p : points) { histogramSeries.addPoint(p, false, false, false); } histogramSeries.update(histogramSeries); This doesn't work (works only once): Series histogramSeries = this.getSeries(histogramSeriesID);...

  • Shawn Quinn Shawn Quinn posted a comment on discussion General Discussion

    We don't normally look to add support for these kinds of things to the core GWT Highcharts...

  • Oleg Alekseev Oleg Alekseev posted a comment on discussion General Discussion

    Do you hava any plans to support new alfa hightchart gantt chart https://highcharts.uservoice.com/forums/55896-general/suggestions/804783-gantt-chart?...

  • e.kousou e.kousou posted a comment on discussion General Discussion

    Hello, I have been using this library with no problems on GWT 2.7 but since the upgrade...

  •  MxBlinkPx MxBlinkPx posted a comment on discussion General Discussion

    I got it working like this: setExporting( new Exporting() .setOption("/buttons",...

  • Shawn Quinn Shawn Quinn posted a comment on discussion General Discussion

    Greetings! This project is definitely alive and well, and the Moxie Group commercial...

  • Cloudmu Cloudmu modified a comment on discussion General Discussion

    Hi, the last release was 1.7.0 in 2015. Is there any new release planned? Wondering...

  • Cloudmu Cloudmu posted a comment on discussion General Discussion

    Hi, the last release was 1.7.0 in 2015. Is there any new release planned? Wondering...

  • Shawn Quinn Shawn Quinn posted a comment on discussion General Discussion

    We have not yet tried the Highcharts 5.x JS version with the Showcase application,...

  • Tomasz Balawajder Tomasz Balawajder modified a comment on discussion General Discussion

    Previous version of my application works with Highcharts 4.2.7 and charts works fine....

  • Tomasz Balawajder Tomasz Balawajder posted a comment on discussion General Discussion

    Previous version of my application works with Highcharts 4.2.7 and charts works fine....

  • Shawn Quinn Shawn Quinn posted a comment on discussion General Discussion

    Not sure if you're asking about a GWT issue or a Highcharts rendering issue here....

  • Tomasz Balawajder Tomasz Balawajder modified a comment on discussion General Discussion

    Hi! I'm using Moxie GWT Highcharts 1.7.0. I have trouble with 3D chart. From Highcharts...

  • Tomasz Balawajder Tomasz Balawajder posted a comment on discussion General Discussion

    Hi! I'm using Moxie GWT Highcharts 1.7.0. I have trouble with 3D chart. From Highcharts...

  • Shawn Quinn Shawn Quinn posted a comment on discussion General Discussion

    Of course support for standard events is one of the strengths of GWT Highcharts....

  • Johan Strand Johan Strand posted a comment on discussion General Discussion

    Any suggestions?

  • jan10101 jan10101 posted a comment on discussion General Discussion

    Thanks for reply! The solid gauge works for me. But I have no idea what I have to...

  • Shawn Quinn Shawn Quinn posted a comment on discussion General Discussion

    Am running between things today so I'm not able to debug your example right now,...

  • jan10101 jan10101 modified a comment on discussion General Discussion

    Hey Guys, is there a way to get the Activity Gauge working in GWT? Seems to be not...

  • jan10101 jan10101 posted a comment on discussion General Discussion

    Hey Guys, is there a way to get the Activity Gauge working in GWT? Seems to be not...

  • Johan Strand Johan Strand posted a comment on discussion General Discussion

    Hi! I'm using Moxie GWT Highcharts and I want to use Highcharts plugin "custom events"...

  • Yui-Wah "Clement" Lee Yui-Wah "Clement" Lee posted a comment on discussion General Discussion

    Hi, We have been using maven with 1.5.0 [1] for quite a while and it works very well...

  • Shawn Quinn Shawn Quinn posted a comment on discussion General Discussion

    I'm not sure why this would be needed, but in case you're still having trouble with...

  • Shawn Quinn Shawn Quinn posted a comment on discussion General Discussion

    Hmm, that does sound odd. We use setPoints() regularly here for most of the charts...

  • Joanna Joanna posted a comment on discussion General Discussion

    I use a chart with one series which I need to update with different points on user's...

  • Eliuth Eliuth posted a comment on discussion General Discussion

    Hi, I'm facing this bug when firstly chart widget is added into RootPanel and then...

  • Eliuth Eliuth posted a comment on discussion General Discussion

    Hi, I'm having troubIe setting column’s max point width in GWT Highcharts 1.7.0....

  • e.kousou e.kousou posted a comment on discussion General Discussion

    Hello everybody, I have a gwt vertical panel where i have some widgets and lastly...

  • Régis Régis posted a comment on discussion General Discussion

    Hi, It seems that DataLabelsFormatter method works only when set to the chart level....

  • Kylin Soong Kylin Soong posted a comment on discussion General Discussion

    Hi Shawn, Could you show me the showcase source code?

  • Kylin Soong Kylin Soong posted a comment on discussion General Discussion

    I also wish this project can move to github

  • Kylin Soong Kylin Soong posted a comment on discussion General Discussion

    Hi Shawn How about this goes on, I still can not find gwt highcharts from mvn repository?...

  • Bruno Bravo Bruno Bravo posted a comment on discussion General Discussion

    The Chart class has the method "setClickEventHandler" that handles click events on...

  • Joanna Joanna posted a comment on discussion General Discussion

    I noticed that the API doesn't support passing a null value as categories parameter...

  • hcode hcode posted a comment on discussion General Discussion

    Hi moxies guy, any updates ? Regards Jean-Marie

  • hcode hcode posted a comment on discussion General Discussion

    Hi Still having the issue with gwt-highchart 1.7 and highchart 4.1.5. As far as I...

  • Adam Gzella Adam Gzella posted a comment on discussion General Discussion

    Hi. We have recently switched to gwt-highcharts 1.7 and highcharts 4.2.5. After a...

  • Joanna Joanna posted a comment on discussion General Discussion

    I have a widget where I can dynamically change the type of the series within the...

  • Shawn Quinn Shawn Quinn posted a comment on discussion General Discussion

    We haven't used Highmaps here at Moxie yet, so i haven't tried this myself. Theoretically...

  • Karthikeyan Karthikeyan posted a comment on discussion General Discussion

    Hello Shawn Quinn sorry to ask is this project still active or dead. If this project...

  • Maniek.rm Maniek.rm posted a comment on discussion General Discussion

    When will the GWT Highcharts get update includes new version of the Hightcharts ...

  • moxieuser moxieuser posted a comment on discussion General Discussion

    I'm hoping someone knows and is willing to share some wisdom regarding the legend...

  • Dan Jones Dan Jones posted a comment on discussion General Discussion

    I would like to use Highcharts' Spline curve to estimate missing values on the x-axis....

  • Abraham Abraham posted a comment on discussion General Discussion

    Fixed. Basically, I discovered that even though I thought we were using highcharts...

  • Dan Jones Dan Jones posted a comment on discussion General Discussion

    We don't need the color-matched mini-charts until after the big charts have been...

  • Shawn Quinn Shawn Quinn posted a comment on discussion General Discussion

    If you're ok with waiting until after the chart is rendered, then you can get the...

  • Abraham Abraham modified a comment on discussion General Discussion

    This what I have ... I've been messing around with the different possibilities: series...

  • Abraham Abraham posted a comment on discussion General Discussion

    Thanks. I thought I tried that and it didn't seem to disallow overlapping. I'll take...

  • Abraham Abraham posted a comment on discussion General Discussion

    Thanks. I thought I tried that and it didn't seem to disallow overlapping. I'll take...

  • Dan Jones Dan Jones posted a comment on discussion General Discussion

    Is there any way to get the color of a series that was automatically assigned when...

  • Shawn Quinn Shawn Quinn posted a comment on discussion General Discussion

    You should be able to use the "setOption" method for cases like this. E.g. config.setOption("allowOverlapping",...

  • Abraham Abraham modified a comment on discussion General Discussion

    I can see in later versions of Highcharts that the default to allowOverlapping datalabels...

  • Abraham Abraham posted a comment on discussion General Discussion

    I can see in later versions of Highcharts that the default to allowOverlapping datalabels...

1 >