Highcharts

Highcharts Density Dot Map Support?

早过忘川 提交于 2019-12-12 02:58:09
问题 At my work my boss is asking me to implement a dot density map . Now I can't get into the details but I have implemented a simple lat/lon map as shown in this link: http://jsfiddle.net/gh/get/jquery/1.9.1/highslide-software/highcharts.com/tree/master/samples/maps/demo/mappoint-latlon/ I am using the state of Florida because that is the point of interest for me. Anyway I am trying to create a dot density map where each point is associated with a value. That value would be associated with a

rcharts highcharts plotLines

懵懂的女人 提交于 2019-12-12 02:57:53
问题 I am having a little trouble to draw a horizontal line by using rcharts (highcharts) on a plot. I would like to use the plotLines from highcharts library to do this. Below is my code: a$yAxis(title='my_Yaxis name', plotLines=list(color='red', value=10, width=2)) Without the plotLines, my chart display with no problem. Once i added in the plotLines, it is not working. I am not sure if rcharts support plotLines in highcharts? Appreciate if any experts here can give advice. Thanks! 回答1: Hello

Highcharts Pie chart return slice animation on mouseout

佐手、 提交于 2019-12-12 02:55:59
问题 I am implementing an animated pie chart in Highcharts where the slices pull out on mouseover and all is good apart from a issue where the on mouseOut I want the slice to return to the 'closed' position. This is the code for the animation and I have a clearTimeout on mouseOut however this is not returning the slice to the original position. Is there an easy way of the chart to its original position. I have a fiddle here... http://jsfiddle.net/rupertito/Y3wvN/1/ pie: { allowPointSelect: true,

HighCharts Draggable Plotline with Logarithmic axis scale

人盡茶涼 提交于 2019-12-12 02:54:26
问题 I have a simple Line chart using HighCharts & trying to add draggable plotlines in it. $(function () { function draggablePlotLine(axis, plotLineId) { var clickX, clickY; var getPlotLine = function () { for (var i = 0; i < axis.plotLinesAndBands.length; i++) { if (axis.plotLinesAndBands[i].id === plotLineId) { return axis.plotLinesAndBands[i]; } } }; var getValue = function() { var plotLine = getPlotLine(); var translation = axis.horiz ? plotLine.svgElem.translateX : plotLine.svgElem

PHP::Highcharts candlestick volume and rsi data missing

那年仲夏 提交于 2019-12-12 02:53:32
问题 i am working highcharts candlestick with volume and rsi indication. when i put indicators.js in my page, lot of data missing in chart but it showing on volume. If suppose i remove indicators.js , all data perfectly showed on both chart and volume but rsi indicator not working. I want to show all data on both chart and volume with rsi indication. data format - json [prepared dynamically from mysql and php] Anybody knows let me know. JS Fiddle Link [For Demo] <http://jsfiddle.net/pandymassblack

Highstock Data Grouping to Use Last Data Time as Index

只谈情不闲聊 提交于 2019-12-12 02:52:41
问题 In Highstock (1.3.1) dataGrouping a group is indexed by using the date/time of the first data in the group. Given we have the following 1 minute OHLC data time: [08:59, 09:00, 09:01, 09:02, 09:03, 09:04, 09:05, 09:06, 09:07, 09:08] Currently, if we group this into 5 minute... 1st group will be [08:59] with 08:55 as index 2nd group will be [09:00, 09:01, 09:02, 09:03, 09:04] with 09:00 as index 3rd group will be [09:05, 09:06, 09:07, 09:08] with 09:05 as index What I want is... 1st group

Highcharts markers on legend and hover ONLY

可紊 提交于 2019-12-12 02:51:59
问题 I need to show highchart markers only on hover state and in the legend at all times. I don't want it to show on normal state in the chart. I searched for this and found this post which did not work for me Series markers disable on lines and enable on legend in Highchart 回答1: You can reset drawPoints function. Highcharts.Series.prototype.drawPoints = function() { }; Example: http://jsfiddle.net/11pLzk9m/1/ 来源: https://stackoverflow.com/questions/31997776/highcharts-markers-on-legend-and-hover

Highcharts is much slower rendering a chart after building object vs manually coding same object

守給你的承諾、 提交于 2019-12-12 02:49:22
问题 The page accepts input from user where they paste '|' delimitated data. This data is parsed into a newSeries object. After all the parsing is done the timing to render the graph is almost 15 seconds. However if I copy the exact same newSeries object (using chrome dev tools) and manually define the object the rendering only takes 200ms. Also the interaction of the chart is almost useless after the parsed newSeries object while the manually defined object interacts perfectly. I really don't

min and max axis value not respected in HighCharts chart with a logarithmic axis

大兔子大兔子 提交于 2019-12-12 02:49:17
问题 I have the a stacked column chart with a logarithmic scaled y axis (JSFiddle here, adapted from a basic demo chart) $(function () { $('#container').highcharts({ chart: { type: 'column' }, yAxis: { type:'logarithmic', min: 0.3, // I WANT THE Y-AXIS TO START AT 0.3 min: 25, // I WANT THE Y-AXIS TO END AT 25 endOfTick:false, maxPadding:0, tickInterval:0.1, }, plotOptions: { column: { stacking: 'normal', } }, series: [{ data: [5, 3, 4, 7, 2] }, { data: [2, 2, 3, 2, 1] }, { data: [3, 4, 4, 2, 5] }

Highcharts, Yii and body content reloading

孤者浪人 提交于 2019-12-12 02:47:16
问题 I have a view that renders some data in a CListView and a Highcharts graphic. Please note that the pager of the CListView works the following way: it requests the "new page" to the server, the servers renders the entire content of the page and sends it to the CListView . The body is then replaced with the content that is being sent, with something like this: $('body').html(rendered_html_response) . I also have a dropDownList that imitates this behavior. This is the code: <?php echo CHtml: