0
votes
2answers
84 views

Google Gauge chart not getting generated in ASP

I'm trying to generate a gauge chart based on changing MTBF values, However when I run the webapplication, I don't see any chart, just the button. Is my approach in the right direction. Thanks for all ...
0
votes
0answers
54 views

Creating gauge chart for Mean time between failures

I need to create a gauge for MTBF values using google apis. It is a single value that gets updated on any refresh which needs to be shown on the gauge. I wouldnt require a database for this purpose. ...
0
votes
0answers
9 views

I can't reload GVAreaChart?

I've just implemented google chart for my site, and want a smooth ajax function. Markup: <cc1:GVAreaChart ID="TotalErrorsAreaChart" runat="server" ...
0
votes
0answers
235 views

How to use Google Chart API in .NET

I want to use Google Chart API in my dashboard. I've never used it before therefore i'm having some issues while binding the chart with the Datasource. I want to display a line chart with height as y ...
3
votes
2answers
435 views

Object has no method getColumnType error

I have read the solution on this post but cannot seem to fit it to my issue. I am using google charts to build a line chart. x-axis being a date, y-axis being an integer. When I run my code I get ...
0
votes
0answers
178 views

Google Charts with ASP not working

I have this example to implement a Google Charts on and aspx page. I need to be able to update the values for the Name & Qty dynamically. What is the best way to pass this information to the ...
0
votes
0answers
391 views

Customizing google ColumnChart in Asp.Net MVC

I was trying to customize google Column chart to add my own data from controller. I found easy solution but if someone knows better approach I am happy to modify my code. Assuming that we copy the ...
0
votes
1answer
626 views

Google combo chart transition animation

today i found it these chart service by google and i played around with a little ans seem to go stuck and chart transition animation where i try 2 view two sets of different data on the same table ...
0
votes
0answers
152 views

Google Charts will not work with my ASP.Net Page

I am having some issues with getting my data to pass through to the Google Charts that I want to implement. Here is my code in the code behind for the aspx page within the page load: Dim ...
1
vote
1answer
1k views

How to pass data to Google Charts?

I am trying to use Google Charts for my ASP.NET website. I want to include this on a page that loads and calculates the data for the addrows function. After I calculate my counts I need for the ...
0
votes
2answers
106 views

Is it possible to build dynamic custom object in Javascript

I am working on a website that has Google charts, the website includes JavaScript Ajax that pulls data from web service and supposed to create object that will be passed to chart. If it possible to ...
1
vote
3answers
875 views

Binding data table to google charts

I have to use google charts in my project. I have to implement c# and asp .net for doing that however I have tried java script as well but the output is not what I intended for. Can anyone help me ...
0
votes
0answers
269 views

Google chart not appearing correctly in 2nd/3rd etc jquery tab in asp.net

has anyone come across this problem before it must be a known bug? On this site http://jsfiddle.net/G862D/3/ you can see the chart appearing in the 3rd tab all ok with percentage within the pie ...
0
votes
2answers
659 views

Google Interactive Charts not loading when UpdatePanel is refreshed

Help! I've spent hours researching this and can't find a solution. I'm using the Google Interactive Charts API in an UpdatePanel which asynchronously refreshes when I change the selection in a ...
-1
votes
1answer
106 views

Index Was Outside The Bound of Array In Java script C# Web Application Creating Google Chart?

hi i got this error in java script i am trying to run from server side in this script i use for loop in which i get value for loop runs more then 3000 times and get value from array having mare then ...
2
votes
2answers
1k views

Error in Google visualization bar chart API in Android Browser

I am using ASP.NET MVC3, Razor, jQuery Mobile and having some java scripts which calls Google Chart API, to draw Bar Chart (Visualization API). It is working fine on Desktop browsers but failing with ...
0
votes
1answer
798 views

Google Pie Chart and Bar Chart (both Interactive) not showing labels

I'm trying to put Google's BarChart and PieChart both the client side version, and i'm experiencing some problems with the labels over the pie and the labels on the left of the vertical axis (of the ...
4
votes
1answer
1k views

Integrate Google Chart Interactive with ASP.NET and C#

I want to create chart using Google Chart Interactive with ASP.NET and C# I was found this example http://code.google.com/apis/visualization/documentation/using_overview.html but i find problem how ...
1
vote
2answers
727 views

How can I programatically render Google Charts API images into a PDF file?

I'm rendering charts on my website using the Google Charts API and I want to export these into a report for the users, most likely a PDF file. What methods are available to do this programmatically ...
0
votes
1answer
990 views

How to create Candlestick chart of google api

I am to create a candlestick chart to show stock details from xml file in asp.net please provide me any good link of example/tutorial of google's candlestick charts. i got ...
2
votes
2answers
283 views

How to: Dynamically invoke javascript from asp.net input box?

I have a asp.net input box: <asp:TextBox ID="InCL" runat="server" Text=""></asp:TextBox> As soon as a number is entered I would like to send that value to a javascript function that ...
0
votes
2answers
335 views

Asp.net + Google Charts - Attached html file won't open correctly

I have an Asp.Net page containing one grid and an image. The image is a google charts chart and its urls is around 1600 characters. I out together an .htm file containing the grid and the image. For ...
23
votes
5answers
18k views

How to use dates in X-axis with Google chart API?

Is there a way to plot a chart with Google chart API so that the X-axis values are days in a month? I have data points that are not provided with the same frequency. For example: Date - Value ...
1
vote
2answers
912 views

(GoogleChartSharp) Why is this Google Charts scatter chart all messed up?

So I'm putting together a little code metrics report based off of usage data I've been collecting via the CodeSharp AOP libraries. Here's what the piechart data looks like: However, here's what I'm ...