Highcharts is a Javascript charting library that uses HTML, SVG, and VML. The editor offers both open source/nonprofit and commercial editions of the product.
1
vote
0answers
13 views
Highcharts on Android
I am having trouble getting Highcharts to render in an Android Webview. Here is my html page:
<html>
<head>
<script type="text/javascript" src="www/js/highcharts.js"></script>
...
0
votes
1answer
10 views
Audiogram with Highcharts
I am trying to display an audiogram, but I am facing the following difficulties:
the Y axis has the following categories 125,250,500,1000,2000,4000,8000. They all need to be of equal distance from ...
0
votes
0answers
10 views
HighCharts: context menu hidden for small charts
My problem is exactly the same as this post. The context menu gets hidden when charts get below a certain size. The accepted answer:
.highcharts-contextmenu {
bottom: auto !important;
top: ...
0
votes
1answer
7 views
Hightcharts - Not showing column datalabels when chart type is column
Below is the code fiddle to display highchart. It doesn't show datalabels when chart type is column. when it is 'bar' it shows datalabels.
http://jsfiddle.net/LuxRK/embedded/result/
$(function () {
...
0
votes
1answer
28 views
JavaScript PHP HighChart transform a PHP array to a javascript array
I saw other posts but it doesn't work. I am a bit confused here on how I implement an array into JS from PHP...
In the PHP file (test.php) I have :
$table = array();
while($row = ...
0
votes
1answer
14 views
Highchart, how add text on pie pieces?
have a PIE chart, I need show text on pie pieces like here and code on example what I have JSFiddle.
Part code here:
$('#container').highcharts({
chart: {
...
0
votes
0answers
14 views
how do I get two highcharts on one page?
I have two charts that I am trying to load on separate div's on the same page, they are similar but one is a drill down and the other isn't. I have tried wrapping the entire function with var chart = ...
0
votes
0answers
6 views
How to implement a track ball as the line series for column, ohlc and candlestick in highstock?
We want to show the same trackball for the column, ohlc and candlestick series style as line series in highstock(show a circle symbol track ball).
Is there suggestions or ways that we can follow to ...
0
votes
0answers
17 views
Highcharts multiple charts update events being queued or not async for some reason
My init function is creating a chart and returning a reference to it. I pass the reference to a function that can handle multiple instances updates based on the reference. Everything is updating ...
0
votes
2answers
21 views
How do you insert custom dynamic values to subtitle?
I am trying to insert current date to subtitle in highcharts as below:
subtitle: {
text: function() {
var d = new Date();
return '<b>' + d + '</b>';
},
},
...
0
votes
1answer
21 views
How do you put the datetime in the guage chart in human readable format
I have another highcharts gauge question:
Besides the value of CPU I also would like to display the newVal1 (which is the date and time of the cpu).
Here is my function:
function ...
0
votes
2answers
17 views
Cannot find /js/highcharts.js in GWT project
I am working on displaying charts in my GWT project but somehow I cannot get highcharts to work. I have the following html file:
<!doctype html>
<html>
<head>
<script ...
0
votes
2answers
38 views
Javascript Unresponsive Script Error
I am trying to get data to load on my chart from an API. All the data is getting to the chart correctly, but the chart doesn't load and I get the unresponsive script error. I'm using Highcharts. ...
0
votes
1answer
14 views
Highcharts : How to fix labels to the top when xAxis rotation is 90°?
Here is the test :
$(function() {
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type: 'column'
...
0
votes
0answers
12 views
Highcharts Line Chart Legend Symbol Disappeared When Using Gradient Fill
I'm trying to fill gradient color in my charts, with the sample code in the demo "http://www.highcharts.com/demo/pie-gradient". And then I found in line charts' legend, the line part of the symbol ...