charts

how to remove of y -axis label in chart?

与世无争的帅哥 提交于 2019-12-13 05:46:18
问题 could you please tell me remove labels y axis labels .I make a simple chart using fusion library . http://www.fusioncharts.com/dev/chart-attributes.html?chart=area2d I saw some y axis label 0$,4$,12$..etc I want to remove that label .I need to show chart like this as shown in image [![enter image description here][1]][1] http://jsfiddle.net/Tu57h/135/ can we show this on right side as shown in image ? here is my code http://jsfiddle.net/Tu57h/135/ FusionCharts.ready(function () { var

Why is the Highcharts tick placement different in two similar charts?

最后都变了- 提交于 2019-12-13 05:26:40
问题 I have a question regarding the tick placement in two similar Highcharts chart. In the first example, I have specified the xAxis property and in the second example I have specified an x and y value in the series. The data is exactly the same, but as you can see the ticks are placed differently. I have tried to play around with the tickmarkPlacement , minPadding , maxPadding to make the first example look like the second, but without success. Could someone tell me wy the two charts, place

ColdFusion Chart x-axis label limits

佐手、 提交于 2019-12-13 05:23:39
问题 I'm using cfchart tag to draw my line chart in ColdFusion. My x-axis range is from 1 to 24 and it is fix number of labels for all my charts. But in my chart, I may have values for first 10 (or any fix number from 1 to 24) points. I mean, my query row count will be 10. So query with 24 points will show full graph ad query with 10 points will show x-axis values from 0 to 10. But I want to scale the chart for 24 points regardless of query count. cfchart has an option called scaleFrom and scaleTo

Want to show the dataset labels

南楼画角 提交于 2019-12-13 05:19:28
问题 I am trying ChartJS line chart with a set of data.I have multiple lines in it. I want to show the tooltip for the data. but I am not able to. My code is new Chart(canvas).Line(data,{ responsive : true, animation: true, barValueSpacing : 5, barDatasetSpacing : 1, tooltipFillColor: "rgba(0,0,0,0.8)", multiTooltipTemplate: "<%= datasetLabel %> - <%= value %>", showTooltips:true }); currently my view of line chart is What I want is like enter image description here 回答1: You can use the custom

Highcharts Dynamic Chart with MySQL Data doesn't reload

此生再无相见时 提交于 2019-12-13 05:15:28
问题 Good evening everyone, this moment I try to work with HighChart / HighStock and after several weeks I were able to display my MySQL-data in the charts. But: I always want more. Well, I try to reach a dynamic chart which is refreshing like the examples you may know from the website. http://jsfiddle.net/sdorzak/HsWF2/ I used the sample code as a guide. It doesn't work, but think the problem is the missing y-axis because y-axis data come from my MySQL database while x-axis should be the current

HighCharts - timeseries chart - irregular datetime interval on xAxis

社会主义新天地 提交于 2019-12-13 05:14:20
问题 I need to make a chart on which xAxis is of type 'datetime', but have irregular intervals: http://jsfiddle.net/cz6rL/ this is the code: $(function () { $('#chart1').highcharts({ chart: { zoomType: 'x', spacingRight: 20 }, title: { text: 'Incomes/Outcomes' }, subtitle: { text: document.ontouchstart === undefined ? 'Click and drag in the plot area to zoom in' : 'Pinch the chart to zoom in' }, xAxis: { type: 'datetime', minRange: 15 * 24 * 3600000, title: { text: null } }, yAxis: { title: { text

Need help on Problem in using c# .net 4.0 realtime chart in windows form application

雨燕双飞 提交于 2019-12-13 05:13:25
问题 I have a windows form which has 1 button (for simplicity). On clicking this button, I start an algorithm in a separate background thread using ParameterizedThreadStart. Now this algorithm produces output at regular time intervals which needs to be displayed in a chart. If i init the chart in MainForm and pass this object to algorithm thread, then it doesnt allow and says chart's allocation and access are cross-thread. If i have chart object inside algo class, then it doesnt display the chart

Why the following data produce wrong chart?

邮差的信 提交于 2019-12-13 05:13:17
问题 I am using linegraph of graphael. I have this line to produce my graph var lines = r.linechart(30, 30, 600, 440,[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71]],[[0.03091,0.00461,0.0068,0.00144,0.00544,0.00035,0.00871,0.03117,0.02259,0.02623,0.01967,0.01967,0.00788,0.02217,0.0137,0.01237,0.01764,0.0131,0.00942,0.0076,0.01463,0.02882,0

Create multi color bar in PHPExcel Charts

99封情书 提交于 2019-12-13 05:07:44
问题 I want to create a bar chart using PHPExcel in multi color means every bar can contain multi color as shown below. I have searched it out but couldn't be able to find out the solution. Second question how can I increase width of bar? Best Regards 回答1: It's a stacked column chart, so you need to set the plotGrouping to PHPExcel_Chart_DataSeries::GROUPING_STACKED See /Examples/33chartcreate-bar-stacked.php for an example but set $series->setPlotDirection(PHPExcel_Chart_DataSeries::DIRECTION

I get different function behavior when using F8 or F5 key

ε祈祈猫儿з 提交于 2019-12-13 05:06:06
问题 I created a specific function to format my charts. The main Sub and the Function code: Private Sub UserForm_Initialize() Dim mychart As Chart Dim ChartData As Range Dim ChartName As String Dim thiswb As Workbook Dim imageName As String Dim nColunas As Long Dim i, j, k As Integer Set thiswb = ThisWorkbook k = 0 With thiswb.Sheets(4) MultiPage1.Pages.Add MultiPage1.Pages(k - 1).Controls.Copy MultiPage1.Pages(k).Paste Set ChartData = .Range("B2:B97") Set mychart = .Shapes.AddChart