Export Highchart to pdf from asp.net server side code Programming Web Development by swapnathomas hi all, i need to export highchart to pdf format using server side code(asp.net/c#). i dont want to use highchart controls in-built export functionalilty. also i want to export multiple highchart to pdf in sigle click. if anyone knows plz help me.......... thaks in advance. export highchart to pdf from server side code Programming Web Development by swapnathomas hi all, i need to convert highchart graph to pdf format using server side code(asp.net/c#). i dont want to use highchart controls in-built export functionality. also i want to export multiple highchart to pdf in single click. if anyone knows plz help me. thanks in advance. --swapna thomas xpath for highchart line-charts Programming Software Development by Robert_33 … get specific value(s) for a webpage that contains a highchart line chart... From the example below, I use chrome dev… finding element and comparing them....just having issues with the highchart stuff: `helpers.expectTextIdMatch = function(elementId, expectedText, callback) { browser.findElement(by… have anyone used piechart in highchart control in asp.net? Programming Web Development by krunalkakadia hi all, I have to made a piechart in highchart control for asp.net? any one have work in it?any source code or help will be appreciated? thank you, KK Re: have anyone used piechart in highchart control in asp.net? Programming Web Development by kvprajapati Download [URL="http://www.highcharts.com/download"]HighChart[/URL] and you will find number of samples. Re: have anyone used piechart in highchart control in asp.net? Programming Web Development by Vangi ….com/"]DotNet.Highcharts[/URL] library. You can build the Highchart entirely on the server side and there are a lot… HELP NEEDED!!! Using Highchart to plot a graph.. Programming Web Development by dapcigar Hello all, Am trying to display records from mysql using HIghchart but for some reasons, it is not bringing out any … Jquery dynamic table name Programming Web Development by ajay.motah … am having a smal issue whereby i am using a highchart api based on jquery to display stats. but the stats… Re: Issues Rendering Highcharts - Populating through PHP/MySQL Programming Web Development by pritaeas > echo join($data1, ',') Should be: echo join(',', $data1); As a sidenote, you can get excellent support on the HighChart's forum. Re: highcharts framework Programming Web Development by JorgeM … ASP.NET page), and push the series values to the highchart. So thanks again for the thread! Re: Viewing multiple checkbox data in php Programming Web Development by radwanullah … $instrument) { echo $instrument.'<br>'; } ?> i am using highchart for generating the charts. the below code get data from… Re: Sort array Programming Web Development by adishardis Thanks for your input, my goal is to use it in highchart chart (highstock) and the date field needs to be sorted from oldest to newest. I tried the sort function but the errormessage confirmed that it indeed is not an array but a string. Any other ideas? Cheers /Adam Re: Export Highchart to pdf from asp.net server side code Programming Web Development by pritaeas I think you're better off asking them. They provide excellent support so you should have an answer quite soon. Re: have anyone used piechart in highchart control in asp.net? Programming Web Development by krunalkakadia hi, thank you for reply. i am stucked here since last two days. i have already downloaded this and have done with JS. but i want to apply it to asp.net .aspx.cs file. i want to import through .dll that i can bind grid or some other control datra to it.means i want to bind server side data. Re: HELP NEEDED!!! Using Highchart to plot a graph.. Programming Web Development by naui95 If I was you I'd use Google Charts https://developers.google.com/chart/?csw=1 it's very easy to integrate! Populate using mysql and php in highchart Programming Web Development by ria.yaoto Somebody can help me. I'm new in php and highcharts. I tried to populate my chart using mysql and php, but when I tried to run it, the chart didn't appear, only a blank web page. And there's no error appeared. Her's my codes (sorry for messy code): <!DOCTYPE HTML> <html> <head> <meta http-equiv="… Re: Populate using mysql and php in highchart Programming Web Development by urtrivedi you try to view source after you load your page, see output of line 43 and 81 of your code, whether it is properly populated or not categories: [<?php echo join($data1, "','"); ?>], data: ['<?php echo join($data2, "','"); ?>'], Re: Jquery dynamic table name Programming Web Development by EvolutionFallen If I understood you correctly, maybe this will help: $('.tables_stats').each(function() { var table_name = $(this).attr('id'); switch(table_name) { case "[table_id_here]": // change to the table name you're checking for run_a_fcn(); break; // …