I have a really strange behavior with highchart (via rails plugin): The graph display without the graphlines but the data exists because when point to the graph it's show the little box with the data.
http://www.alderia.com/highchart1.png
When I open firebug, the lines in the graph appear...
http://www.alderia.com/highchart2.png
The thing is that the same thing happens with Chromium... so it's something not specific to firefox.
Highcharts line chart does not work with jQuery 1.7.
http://www.highcharts.com/documentation/changelog
Related
I have any problem with cytoscape, actually cyBrowser. It doesn't work correct.
There are 3 different shapes:
I actually work at my windows 10 PC and cyBrowser during create any graph plots (specifically heat map) isn't loading (I can see 100% processing, but but nothing happens);
In addition I use MacOS PC on work and and everything is fine there;
Actually I use MacAir and I have problem with cytoscape work when I use cy browser - it's just crushing
If you can help me, I will be extremely grateful
OK, there are a couple of quick work-arounds. First, when you create your plots, you should see an html file in your home directory. This is created by cyPlot when you request the plot to be created as a debugging aid. You should just be able to open that in any browser and you'll have your plot. Second, you should be able to disable the use of cyBrowser and use a native browser instead, although certain things won't work (e.g. selection in the browser won't be reflected in Cytoscape). To do this, go to Edit->Preferences->Properties and look for "useCyBrowser" and set that to false.
-- scooter
I am trying to install high-charts through npm and use it on the server side to output the data to a jade template. I am using basic express framework.
The first section in the link below is the guide that I am following.
http://www.highcharts.com/docs/getting-started/install-from-npm
However I am getting an error when I use this line of code
require('highcharts/modules/exporting')(Highcharts);
I have tried this across multiple computers and it's the same error across all.
Code used:
I have no idea why its failing. Any help would be great.
The problem is that you are trying to use Highcharts on the server side, but that library requires DOM nodes from the client's HTML document to work (like the document object from the error you show and also the container where the chart will be drawn).
You can emulate the client side using PhantomJS. This way you can render your charts on the server.
You can try following this guide from Highcharts documentation website.
However, it's definitely easier to load and use the library on the client side and use the server only to send the chart data to the client.
I think I am missing something.
I have a simple column chart. I have the following in the chart configuration:
exporting: {
enabled: false
},
On the chart, there is a little dropdown allowing me to download the chart as PDF. When I did that in Firefox, there is a popup window showing the name of the PDF file and export from http://export.highcharts.com
I have Firebug in my Firefox and I am unable to see any remote call in the Firebug console to export.highcharts.com. Why am I unable to see any remote call trace? I know I must miss something and thanks for letting me know what it is.
Regards.
Check the net panel on firebug for the remote calls. Double check that the net panel is enabled in the options menu
I have a number of sites using highcharts and have a licence.
However, I've now been asked to implement 'flags' which are only available in highstocks.
So, if I 'upgrade' to highstocks, will my sites with highcharts continue working as before ?
Or, is there a workaround to create flags in highcharts ?
Highstock contains Highcharts. Simply replace highcharts.js with highstock.js and everything should works the same way.
About flags: you can try to use scatter series instead. Simply for marker use image.
I've been playing around with highcharts for the first time because it looks amazing! I'm trying to implement it on the Joomla platform but don't seem to be able to get it working.
I think I've successfully called the highcharts.js and jquery in the head. And I've added the div with the sample code down the page but the chart does not seem to be drawing. If I look at the console in firebug I can see there is a syntax error but unfortunantly I can't see what might be causing it given that I just cut and paste the sample code.
Thanks in advance,
Rowan
It looks like a problem with jquery / mootols problem, have you tried to use highcharts mootos wrapper without jquery or use noConflict jQuery.noConflict(); ?
Ah fixed it myself, I googled the error Uncaught SyntaxError: Unexpected token ILLEGAL and it turns out sometimes when you copy and paste js it does some weird things at the end. So I deleted the last line and simple retyped it and hey presto!