charts

Indication in Stacked chart for MIN, MAX (stuck here for a month ..)

倖福魔咒の 提交于 2019-12-25 03:14:39
问题 Stuck in trying to adjust an arrow (sort of) inside an Excel chart. I have a column chart with series of data. I want to point out minimum, maximum, and average value from the chart. What i was planning is, to mark it by an arrow. Is it possible via C#? For the below chart, I want to indicate MIN & MAX, like the ones I have drawn. I started by getting the charts by this: Excel.Application app = new Excel.Application(); Excel.Workbook book; Excel.Worksheet sheet; Excel.ChartObject chartObj;

AnyChart Background Color While Loading

主宰稳场 提交于 2019-12-25 03:13:19
问题 I am using AnyChart API for my android app : Github I can't figure out how to set up the background color while the chart is building. I tried all of the different background setting but none resolved my problem. Everytime the chart is loading data I have a white blank space for about 1-2 sec. Examples with white space: Chart 1, Chart 2 After view seconds: Chart 1, Chart 2 I hope someone knows the solution or at least if that is even possible to change it. 回答1: We took into account your issue

AnyChart Background Color While Loading

核能气质少年 提交于 2019-12-25 03:13:18
问题 I am using AnyChart API for my android app : Github I can't figure out how to set up the background color while the chart is building. I tried all of the different background setting but none resolved my problem. Everytime the chart is loading data I have a white blank space for about 1-2 sec. Examples with white space: Chart 1, Chart 2 After view seconds: Chart 1, Chart 2 I hope someone knows the solution or at least if that is even possible to change it. 回答1: We took into account your issue

TChart find valueindex with mousemove over bottom axis label

谁说我不能喝 提交于 2019-12-25 03:11:43
问题 Delphi 7 and TChart version 2014Delphi7 I have a 3d TChart with 16 bar series and 16 values. (a 16x16 3d bar chart) When I move the mouse over the bottom axis I need to know the valueindex of the series the mouse is over. I want to hide(transparency=75) all other values so only the bars for that index are displayed. (show only that index for all series so displayed is in effect a 1x16 chart) How can I get the index the mouse is over? 回答1: The Series' Clicked(X,Y) function returns -1 if the

Excel VBA: Chart-making macro that will loop through unique name groups and create corresponding charts?

99封情书 提交于 2019-12-25 03:02:48
问题 Alright, I've been racking my brain, reading up excel programming for dummies, and looking all over the place but I'm stressing over this little problem I have here. I'm completely new to vba programming, or really any programming language but I'm trying my best to get a handle on it. The Scenario and what my goal is: The picture below is a sample of a huge long list of data I have from different stream stations. The sample only holds two (niobrara and snake) to illustrate my problem, but in

Google Pie Chart: How can I remove the white line between slices?

核能气质少年 提交于 2019-12-25 02:53:34
问题 Similar to this question, but for Google Pie Charts: How can I remove the white lines between the slices on a Google Pie Chart: On the image above, I want to remove the white space highlighted by the green arrow. 回答1: Use the configuration option pieSliceBorderColor with the value transparent (see documentation here). new google.visualization.PieChart(document.getElementById('visualization')). draw(data, { pieSliceBorderColor : "transparent", // Add this line title : "So, how was your day?" }

non-english chars in google charts label?

。_饼干妹妹 提交于 2019-12-25 02:46:23
问题 Does non-english characters work in google charts labels/legends ? This works, the legends shows up fine: var chart_url = 'http://chart.apis.google.com/chart?' + 'cht=bvs' + ...some other stuff... + '&chdl=Lowest price|Average price'; This doesn't work, the legends don't show at all: var chart_url = 'http://chart.apis.google.com/chart?' + 'cht=bvs' + ...some other stuff... + '&chdl=L' + unescape("%E4") + 'gsta pris|Genomsnittligt pris'; Any ideas? Thanks in advance! /toby -----------edit-----

Using Google Visualization API, how to turn off tooltips for a single column?

*爱你&永不变心* 提交于 2019-12-25 02:29:51
问题 According to this reference http://code.google.com/apis/chart/interactive/docs/gallery/linechart.html , tooltip.trigger = 'none' turns off tooltips on a chart. How do you use this? data.tooltips.trigger = 'none' ? And, how do you turn off tooltips for a single column? 回答1: When you draw the chart pass it as a param: chart.draw(data, {trigger:'none'}); 回答2: Disabling tooltips for a single columns isn't possible. But you can get a similar effect by adding enableInteractivity: false to the

Get left and top position of highcharts scrollbar

痞子三分冷 提交于 2019-12-25 02:29:00
问题 I wanted to put custom label on highcharts which should be placed on left side of scrollbar. How can I get top and left position of scrollbar.? I have put label with following code chart.renderer.text('<span style="font-weight:600;"> 1-21 </span>', 20, 120) .css({ color: 'green', fontSize: '12px' }) .add(); 回答1: You can get position of the scrollbar using chart.xAxis[0].scrollbar.group.translateX and chart.xAxis[0].scrollbar.group.translateY , for example: https://codepen.io/anon/pen/KeBxNj

How to draw trade line on Scatter Chart in android?

↘锁芯ラ 提交于 2019-12-25 02:22:17
问题 I am developing application which requires scatter chart. For scatter chart I am using Apache aChartEngine library to draw scatter chart but I needto draw Trade line also on that scatter chart. aChartEngine is not supports Trade line functionality.So anyone has Idea how to draw Trade line on scatter chart in android. Edit Here is my code. protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); TrendLine t = new