bubble-chart

Bubble plot of mine quakes [closed]

风格不统一 提交于 2019-12-13 09:45:20
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . In R I am looking to create a heatmap similar to the one below. Where size represents energy expelled and color represents depth. My dataset (CSV) looks something like this: X, Y, Z, E 19305, -11211, -599, 3000 22159, -13553, -600, 300 22155, -13519, -823, 2000 ... ... ... ... Where X, Y & Z are axes and E is

Manually changing the size of the Bubbles for Plotly Bubble Map in R

妖精的绣舞 提交于 2019-12-13 07:15:54
问题 I am currently trying to change the sizes of the Bubbles for Plotly's bubble map manually. I was successful in changing the colors of the map using the data provided but I am unable to use the same logic to change the size. To change the colors I simply called: colors_wanted <- c("red", "blue", "black", "pink") and passed this command to colors within plot_ly . Do you think it is possible to change the sizes rather than using the formula in this case sqrt to claim the sizes? library(plotly)

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

how to add data label to bubble chart in excel

不打扰是莪最后的温柔 提交于 2019-12-13 02:28:23
问题 Hi I want to add customize data label to my bubble chart. my code is below. at the moment data label refer to XValues. I would like my data label fill with bubble size. would u mind help me how I can customize below code? I tried to add .DataLabel.Text = "txt" but I received below error: Run-time error '438':Object doesn't support this property or method Public Sub CreateMultiSeriesBubbleChart() If (Selection.Columns.Count <> 4 Or Selection.Rows.Count < 3) Then MsgBox "Selection must have 4

d3js: Texts of different bubbles are getting overlapped in bubble-chart

。_饼干妹妹 提交于 2019-12-11 14:46:30
问题 I have a graph as shown below: Each bubble has some text with it and I also show a tipsy on hovering the bubble. As you can see, bubbles which have similar X and Y values are overlapping and thus the text of each bubble are getting mixed up so much that nothing is readable(Notice two red bubbles at Y:10-12 and X:30-35). I want to solve this issue, such that may be only one text is visible or both are visible in some way(if both are possible then this is preferred). Also, I have very less data

Highcharts bubble chart dataLabels overlapping despite z-index

喜欢而已 提交于 2019-12-11 13:30:30
问题 I have a problem with the bubble chart. In fact, i have some points which have the same coordinates with a different name and maybe a different size (z point). For these points, i have a superposition of labels. The z-index solution doesn't work (https://stackoverflow.com/questions/15843238/highcharts-bubble-chart-datalabels-overlappinghttps://stackoverflow.com/questions/15843238/highcharts-bubble-chart-datalabels-overlapping). Does anyone know of any solution to this problem ? I thought to

Can you add a legend to a dc.js Bubble Chart?

爷,独闯天下 提交于 2019-12-11 06:02:24
问题 Is it possible to make a legend for Bubble Chart? Somebody asked this question a few years ago, but I cannot find a good answer for it. Does anybody have an example of where they made a legend for a bubble chart using dc.js? 回答1: You can manually add legend support to any chart which does not have it already by defining the .legendables() function. Although many charts (e.g. pie, line, bar, scatter, sunburst) support it, the default is to return an empty array. One reason why it might not be

Highcharts can not display ajax's return data

房东的猫 提交于 2019-12-11 04:55:22
问题 I want to use ajax get data from database,and use highcharts to display.But now ajax returns data like this: data: [{"employeeCode":12261600,"working":5,"beforeWork":11,"employeeName":"Tom"}, {"employeeCode":12271407,"working":4,"beforeWork":12,"employeeName":"Peter"} {"employeeCode":12272570,"working":5,"beforeWork":12,"employeeName":"Kate"}] When I use highcharts to display this data,my page doesn't show anything,where is wrong? My html code: <!DOCTYPE html> <head> <meta charset="UTF-8">

Display informations about a bubble chart D3.js in AngularJS

不想你离开。 提交于 2019-12-11 00:25:45
问题 I am searching how to display information about a bubble D3.js in AngularJS. I can show an alert with the desired information but I can't display informations on the page with AngularJS because I have no access to the $scope because my graphe is in a directive... How can I pass the informations without change the structure of the web app ? I can't put the formation the bubble chart outsite of this directive. This is my HTML : <body ng-app="d3DemoApp"> <div id="graph1" ng-controller=

Is it possible to make a legend for Bubble Chart?

こ雲淡風輕ζ 提交于 2019-12-10 15:13:38
问题 Currently there is no example on the internet for a bubble chart having a legend, using dc.js, with the dc.legend() function. that.sessions_scatterplot .width(830) .height(350) .transitionDuration(1000) .margins({top: 100, right: 10, bottom: 30, left: 25}) .dimension(that.dim_Source) .group(that.fact_Source_Sessions) .ordinalColors(["#70c5a4","#8cd4f2","#fdc976","#9d97c8"]) .colorAccessor(function(d){ return d.value.src_category; }) .keyAccessor(function (d) { var x = d.value.avg_time/d.value