Click here to Skip to main content
15,890,282 members
Everything / HighCharts

HighCharts

HighCharts

Great Reads

by Ashley Davis
A demo of Highstock using Data-Forge with financial data loaded from Yahoo
by phillipvoyle
I’m going to show you how you can use JSON.h to expose charting data to a web page and draw a chart in the browser.
by Vincent Maverick Durano
In this article, we will learn how to implement a simple Real-Time poll vote results using SignalR 2, MVC, Web API 2, jQuery and HighCharts.
by Pankil Bhatt
In this tip, we will see how to use the Google Maps API and Google Maps with custom styles and a custom pin.

Latest Articles

by Ashley Davis
A demo of Highstock using Data-Forge with financial data loaded from Yahoo
by Vincent Maverick Durano
In this article, we will learn how to implement a simple Real-Time poll vote results using SignalR 2, MVC, Web API 2, jQuery and HighCharts.
by phillipvoyle
I’m going to show you how you can use JSON.h to expose charting data to a web page and draw a chart in the browser.
by Pankil Bhatt
In this tip, we will see how to use the Google Maps API and Google Maps with custom styles and a custom pin.

All Articles

Sort by Score

HighCharts 

16 Feb 2017 by Ashley Davis
A demo of Highstock using Data-Forge with financial data loaded from Yahoo
9 May 2016 by Kornfeld Eliyahu Peter
A tinny syntax error there:(t => t.Catg_id == ct.Catg_id && t.Prog_id == pr.Prog_id && t.year_id = yg.year_id)Look at the last part of your condition...t.year_id = yg.year_idIt should be of courset.year_id == yg.year_id
24 Feb 2016 by Richard MacCutchan
Sorry but this site does not provide code to order. Show what you have tried and people will try to help you.
11 May 2016 by CPallini
Well, the error message is pretty obvious: foreach operates with collections, namely with objects whose classes implement the IEnumerable interface. If results is an integer variable (you didn't show its declaration in the posted code) then it doesn't and cannot be used in such a way.Assuming...
18 Sep 2017 by Graeme_Grant
This link shows you how to do it correctly: Live Charts - WinForm Basic Line Chart sample with code[^]
5 Jun 2014 by Member 10866698
I am try to use high chart in .aspx page which is with Masterpage file.If i execute my code in normal aspx page then it works fine but if i add the same code on aspx page with master page references the charts are not visible.Can any one help me regarding this issue.Following is my...
5 Jun 2014 by sankarsan parida
You have written your code in btnGenerate_Click event. But there is not button in your master page to fire this event.Hope show call this event in a button click.
7 Jul 2014 by Pardeep Rajput
I want to hide and show the scroll bar and range selector on button click
30 Jul 2014 by Amol Jadhao
I want to pass array like this to bind highchart series: [{ name: 'Tokyo', data: [49.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4] }, { name: 'New York', data: [83.6, 78.8,...
30 Dec 2015 by Amol Jadhao
Below service is working fine and getting json also but highchart column not generating. public class Serie { public object[] data { get; set; } public string name { get; set; } } [WebMethod] public string LoadCountry() {...
31 Jul 2014 by Shahriar Iqbal Chowdhury/Galib
@Amol Jadhao: use series = eval(Result.d);
11 Aug 2014 by Amol Jadhao
events: { drilldown: function (e) { if (!e.seriesOptions) {var Fruitsname= e.point.name;//var Fruitsname='Fruits'; drilldowns = {Fruitname:{// 'Fruits': { name: 'Fruits', data: [ ['Apples', 5], ...
23 Sep 2014 by Chiranthaka Sampath
Hi all,I have a question regarding an AJAX Function. It is at the below.function setJsonSer(){ formData = { 'Email': 'clientlink@russell.com', 'Password': 'russell1234', 'URL': getVaria() }; $.ajax({ url:...
22 Sep 2014 by Sinisa Hajnal
Have your target variable defined in the outer scope (whatever that is, other function or even global)Then simply assign it in complete handlerfunction setJsonSer(rowData){......complete: function (data) { rowData = data;}
6 Oct 2014 by Amol Jadhao
Here ,i have written article for those who start from scratchHighcharts in asp.net using jquery ajax[^]
8 Dec 2014 by Member 10382870
buyer1 buyer2 buyer31 2014-0...
8 Dec 2014 by Laxminarsimha M
I have worked on Stacked column series charts in WPF, the given logic may be useful for scenario.Quote: foreach (String str in lstChartSeries.SelectedItems) { List> test = new List>(); foreach (DataRow...
12 Jul 2015 by joe loss
hi, I created a chart using highcharts in birt developer pro.there is a script that computes the average and shows that avg as a line. I would like that script to run when the user clicks on the chart, so I thought adding a simple event handler at the beginning of the script would do the...
18 Jul 2015 by phillipvoyle
I’m going to show you how you can use JSON.h to expose charting data to a web page and draw a chart in the browser.
21 Aug 2015 by Oner Gedik
SqlDataReader rdr = cmd.ExecuteReader(); Object[] chartValues = new Object[9]; string ss = ""; int i = 0; while (rdr.Read()) { //chartValues[(int32)rdr.GetValue(0) - 1] = rdr.GetValue(1); ...
26 Apr 2016 by Richard MacCutchan
You already posted this question in the C# forum; please post in one place only. you should also read Code Project Quick Answers FAQ[^].
9 May 2016 by super_user
when we select value from dropdown then i try to display highcharts according to dropdown value for this i try thisWhat I have tried:[WebMethod]public static string jqufunc(int year){ string res = "["; ProjectdbEntities a = new ProjectdbEntities(); var b =...
11 May 2016 by OriginalGriff
You don;t show us where you declare result, but the error message says it's an integer - which does not implement IEnumerable (why the heck would it? It's not a collection!) so you can't use it in a foreachQuite what you do want to use instead of result I have no idea: that code is so messy...
11 May 2016 by Bernhard Hiller
Your code does not show where result is defined and how it gets a value. At least, you informed us indirectly that result is an int. An int does not implement IEnumerable, hence a foreach is not possible. Furthermore, an int does not have a spstdinfo function. So your code won't even compile. Or...
16 Aug 2016 by Jamie888
Hi, I have a column in my chart generated using highcharts. Currently I want the color of the column and spline to become red if the value of spline is less than 80.So I have the codes as below:series: [{ type: 'column', name: 'Total Built', data: _TotalBuilt, zones: [{...
22 Sep 2016 by Dave Kreskowiak
If you're asking about code from an article, post your question in the forum at the bottom of that article.
17 Oct 2016 by misaqyrn9677
Hello I Want Show Real-Time Chart Via Asp.Net Component highchartsWhen Used Control Timer And UpdatePanel Of AjaxControl Not Working True $(function () { $(document).ready(function () { var ZZ = 0; var Z = 0; ...
16 Oct 2016 by LincolnMugasho
Try Vis Js its able to display realtime charts and is easy to use. Plus its Pure javascript and is supported in many browsers
17 Oct 2016 by Vincent Maverick Durano
I wouldn't personally recommend on using UpdatePanel for this. Instead I would suggest you to use SignalR instead. Here's one example I wrote recently that may help you: Real-Time Poll Vote Results Using SignalR 2, MVC, Web API 2, jQuery And HighCharts[^]
19 Oct 2016 by Subhash PM
Hi AllI have implemented a highchart in my web applicaton. It works fine if there is data. But if there is no data it does not show the message "No data available"anyone please help me.My code returns below value $(function () { Highcharts.theme = {colors:...
7 Feb 2017 by CodeReady
I am new to jsPDF and I am trying to download the highchart with some html content. My code works fine for all browser except "Above Microsoft Edge 20.0 versions".What I have tried:Here is the working Plunker. I have googled similar questions but none of them talk about edge browser,...
5 Feb 2017 by Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)
I found one issue. Code was not working on IE 11. Now it is working. But I see another error in edge. I think you need to report a bug on plugin site. Here - Issues · MrRio/jsPDF · GitHub[^] 'RGBColor' is undefinedAnd if you check the canvg.js file, there is a line written.* Requires:...
7 Feb 2017 by CodeReady
Thanks for looking into this issue @Tadit. I got the workaround for this problem. The problem is related to an Edge-Canvas issue, I suppose.Instead of SVG->Canvas, I used SVG->Blob->Image->Canvas approach.Here is the updated Plunkr.
18 Sep 2017 by Kashif Ahmad Khan
Hi friends, Could anyone help me regarding below coding it is not updating/loading data to Chart. Value of Series (LineSeries) will fetch from database dynamically, below are just for testing/demonstration purpose... I am using UserControls for loading in to Main Form I want load data...
23 Sep 2017 by abood almomani
I have multiple pie charts that's created using highcharts.js. I have already built an Excel export to export the table from the HMTL page to Excel. Now, I would like to export the pie charts So, that when the user clicks the "Export to Excel" button everything is in the excel file. Is this even...
23 Sep 2017 by RickZeeland
You can use the export module: Export module overview | Highcharts[^] This however does not generate Excel format files, but you can save images. Maybe you can use a plugin like this one: Plugins | Highcharts[^]
24 Jan 2018 by GrpSMK
Created donut chart using highcharts library,i need to add an image inside donut chart in javascript how to do it? What I have tried: Highcharts.chart('container', { chart: { type: 'pie', options3d: { enabled: true, alpha: 45 } }, ...
24 Jan 2018 by debasish mishra
Please check the below url. javascript - Image inside donut chart - AmCharts - Stack Overflow[^]
29 Jun 2018 by maryam.saboor
Hi, If you mean standard javascript, so have a look at this link ;) Plotly.js 3D Charts[^]
29 Jul 2019 by Vishal0903
One of our application uses highcharts node export server, so while npm install there are few questions asked as below Agree to the license terms? y/n: (no) y Select your Highcharts version (e.g. 4.2.2):: (latest) Include Maps? (requires Maps license): (no) Include Gantt? (requires Gantt...
29 Jul 2019 by Vishal0903
I found a solution for it, hope this is helpful for whoever needs Create a text file say Input.txt - This will have all the answers for the questions asked Command while npm install should be npm install
22 Sep 2019 by KManishS
Dear Experts, I am plotting scatter chart with multiple series. In chart, x & Y axis have gridLineWidth: 1 so it is showing like grid cells. How do i change background color of a particular cell which have more than 10 scatter points? What I have tried: i can change background color of...
22 Sep 2019 by Gerry Schmitz
It's an illusion; there are no "cells" (in charts). You change the attributes of the points you want to emphasize. Or create a "bubble" chart; where each bubble consolidates a number of points.
27 Sep 2019 by Member 10445425
I am not able to add dynamic series in High charts from a panda data frame based on CSV file. Data in the CSV file looks like this. Installation Manufacturing Sales & Distribution Project Development Other 43,934 24,916 11,744 - ...
27 Sep 2019 by Gerry Schmitz
What Richard said: Using the data module | Highcharts[^]
19 Jan 2020 by Member 7909353
I have a table with following records Where Status A for All Applicaion,V for Valid Applicaion and I for Invalid Applicaion StateName AppType ...
19 Jan 2020 by Member 7909353
In .aspx $(document).ready(function () { GetStateWiseAppCountForAll(); }); function GetStateWiseAppCountForAll() { $.ajax({ type: "POST", contentType: "application/json;...
31 Dec 2021 by Phantomiria
Hello everyone. I am trying to create a pie chart that would represent the proportion of each TYP_CODE ( MH, MV, PH, PO and PS) compared to the total number of entries. Thanks in advance! What I have tried: Here is the code of my different...
17 Oct 2016 by Vincent Maverick Durano
In this article, we will learn how to implement a simple Real-Time poll vote results using SignalR 2, MVC, Web API 2, jQuery and HighCharts.
16 Mar 2015 by Pankil Bhatt
In this tip, we will see how to use the Google Maps API and Google Maps with custom styles and a custom pin.
23 Nov 2014 by Ambati Dilip
Hello, I want to learn high charts. I got a example of data binding with public variables, but now i want to get a datatable from database and bind that datatable to highcharts.
5 Jul 2014 by jitendra prajapat
Hello AllI am facing this error in HighChart using with mvc 4.Warning 7 1.The primary reference "DotNet.Highcharts, Version=4.0.0.0, Culture=neutral, PublicKeyToken=88854f873df851bf, processorArchitecture=MSIL" could not be resolved because it was built against the...
18 Nov 2014 by Akhilesh7799
Highcharts IE 11 issue when i try to download the chart the series names are overlapped on downloaded images ?Please Try to answer as early as possible ?
24 Feb 2016 by vishu kore
I want to create a web project can any one help me? specification as follows. ■ Overview Using WebSocket, implement a sample of Web screen. Send Regularly numerical data to the client side from server side and carry out the graph display using the HighCharts on the Web screen....
11 May 2016 by super_user
i try to get result in highcharts through following code and also through store procedureWhat I have tried: [WebMethod] public static string jqufunc(int years) { string res = "["; ProjectdbEntities a = new ProjectdbEntities(); var b =...
30 Jun 2018 by VenkataSeshu B
Hi all, i want to pass data in 3d charts i.e; x-axis and y-axis,z-axis. This is my requirement. please provide soultion regarding this. Thanks in Advance What I have tried: i have tried for 2d charts, it is working fine, but the same way i need to pass data in 3d charts like...
30 Jun 2018 by muhammad sufiyan
USE THIS CODE link rel="stylesheet" type"text/css:" href="style.css"> Plotly.d3.csv('data_file.csv',function(err,rows) { console.log(rows); var data = []; for (let i = 0; i