Highcharts

Gradient effect with graddually fill in Highchart gauge

只愿长相守 提交于 2019-12-13 07:47:51
问题 I'm planning to create a dashboard for my web application, I have some data to represent graphically so to show that planning to use you Activity Gauge ( http://www.highcharts.com/demo/gauge-activity ) and other charts. But as per our requirement we need to create these graphs with gradient effect with gradually fill effect with two or more than two colors, see the attached dashboard mockup for better understanding our thought. I have done our best effort to make with Highchart Linear

How to make the chart display current year with month in Highchart x-Axis?

淺唱寂寞╮ 提交于 2019-12-13 07:42:45
问题 Chart looks like this: In the x-axis where the months are I also wanted it to show current year. Tried different variations with no luck so hopefully you can see where i went wrong. Really appreciate your help! Django version: 1.10 Python version: 3.6 chartViewHigh.html {% block main %} <h1 align="center">Analysis</h1> {% block content %} <div id="container3" style="width:50%; height:400px;"></div> {% endblock %} {% block extrajs %} <script> var endpoint = '/api/chart/data/'; var labels01 = [

Hide Plot Line on Drill down Event (Highcharts.js)

一曲冷凌霜 提交于 2019-12-13 07:35:58
问题 Is it possible to hide a Plot Line when I Drill down? I have a Bar chart that Drill down to a Line Chart, in the "root" (Bar chart) I show a Plot Line Red that shows the Average value, the problem is that when I Drill down to the Line Chart, if the yAxis allow it, it is visible (the Red Plot Line), I want to hide the Plot Line on Drill down, because that average value I just need to see it in the "root" (Bar chart) not when I Drill down. The average Plot Line has a value of 1865 and it is

Just how flexible is highcharts? (Mockup attached.)

女生的网名这么多〃 提交于 2019-12-13 07:24:14
问题 We've done some mockups of charts we want to include on our website, and we'd be thrilled if we could use Highcharts. But so many of the Highcharts work we see looks fairly identical... Just how customizable is Highcharts? Could we conceivably use it to create charts that look exactly like these mockups? E.g. with Moving averages Attractive dots indicating the high and low Purely decorative gradients "Key" overlay showing what color line represents what So what do you think? Is Highcharts up

Reserve space for text in exported Highchart

六月ゝ 毕业季﹏ 提交于 2019-12-13 07:24:09
问题 We've a barchart that grows/shrinks based on data within a given container. We also allow the user to export the chart to PDF. During export, some text is placed in a pre-determined location. When the chart is tall enough, the chart runs into the text. When I adjust the sourceWidth and/or sourceHeight the chart grows to take all the space. Essentially, I'm looking for ways to reserve some space in the exported document for the text so that the bar never runs into the text. How do I do this?

bubble chart with highstock

ⅰ亾dé卋堺 提交于 2019-12-13 07:14:39
问题 Can we do a bubble chart with highstock ?? if yes i need help please because i do it but it didn't work: $(function () { $('#container').highcharts('StockChart',{ chart: { type: 'bubble', }, title: { text: 'Highcharts Bubbles' }, series: [{ data: [[Date.UTC(1970, 9, 27),97,36,79], [Date.UTC(1970, 10, 10),94,74,60], [Date.UTC(1970, 10, 18),68,76,58], ] }] }); }); thank you 回答1: You must use: <script src="http://code.highcharts.com/stock/highstock.js"></script> <script src="http://code

HighCharts Export Breaks After Resetting Chart Options

守給你的承諾、 提交于 2019-12-13 07:11:28
问题 On initial load of a page we set the chart options and create the chart. We allow the user to manipulate which series items are shown/hidden and also to change what the type of each series is. We also have a "Reset Chart" action that will revert the chart back to its original load setup. Once the user resets the chart any changes made to chart are not reflected on the exported image except if the user has changed their series chart type. An example jsFiddle is here that demonstrates this

highcharts v3.0Beta bubblechart not rendering. Possible bug?

爷,独闯天下 提交于 2019-12-13 07:06:18
问题 I've get a problem using a bubble chart and specifying min and max values on the x axis. In this example, no points are plotted: $('#container').highcharts({ chart: { type: 'bubble' }, title: { text: 'Highcharts bubbles problem' }, xAxis: { min:20, max:80 }, yAxis: { min:-80, max:80 }, series: [{ data: [ {"x":23,"y":22,"z":200}, {"x":43,"y":12,"z":100} ] }] }); As you can see in the jsfiddle http://jsfiddle.net/6Qhh3/, the chart doesn't plot any bubbles. If you remove the min parameter from

handle rangeSelector button when it is out of range of xaxis of data series

℡╲_俬逩灬. 提交于 2019-12-13 07:01:05
问题 Minimum range of x-axis of data series is 5/15/2006 I send the current max value of x-axis of display chart is 5/24/2011 and zoom button is selected as past 7 days, then if I select the zoom button past 30 days, because it is out of the range of x-axis, so I want it to make this select invalid and keep the old past 7 days zoom button and the range of display chart doesn't change. how to do this? Here is the JS code: var end = 1148428800000; var rowcount; $(function () { $.getJSON('http://www

How to load more than on CSV file in highcharts?

最后都变了- 提交于 2019-12-13 06:51:45
问题 I'm trying to make a plot in highcharts, incorporating variables from 2 CSV files. I made an attempt based on these examples: load multiple csv files (correct order) in one chart and load data in highcharts from 2 different csv files but I can't make it work, nothing appears in the webpage, it's just blank. If you see the error in chrome, throws "Uncaught SyntaxError: Unexpected end of input". I would really apreciate any help you could give me. Here's the code and two sample files I was