Questions tagged [dotnethighcharts]

Highcharts is a charting library written in pure JavaScript, offering an easy way of adding interactive charts to your web site or web application. Highcharts currently supports line, spline, area, areaspline, column, bar, pie and scatter chart types.

Highcharts is a charting library written in pure JavaScript, offering an easy way of adding interactive charts to your web site or web application. Highcharts currently supports line, spline, area, areaspline, column, bar, pie and scatter chart types. Users can export the chart to PNG, JPG, PDF or SVG format at the click of a button, or print the chart directly from the web page.

It works in all modern browsers including the iPhone/iPad and Internet Explorer from version 6.

It works in all modern browsers including the iPhone/iPad and Internet Explorer from version 6. Standard browsers use SVG for the graphics rendering. In legacy Internet Explorer graphics are drawn using VML.

One of the key features of Highcharts is that under any of the licenses, free or not, you are allowed to download the source code and make your own edits. This allows for personal modifications and a great flexibility.

Highcharts is solely based on native browser technologies and doesn't require client side plugins like Flash or Java. Furthermore you don't need to install anything on your server. No PHP or ASP.NET. Highcharts needs only two JS files to run: The highcharts.js core and either the jQuery, MooTools or Prototype framework. One of these frameworks is most likely already in use in your web page.

Highcharts supports line, spline, area, areaspline, column, bar, pie, scatter, angular gauges, arearange, areasplinerange, columnrange and polar chart types. Many of these can be combined in one chart.

Setting the Highcharts configuration options requires no special programming skills. The options are given in a JavaScript object notation structure, which is basically a set of keys and values connected by colons, separated by commas and grouped by curly brackets.

Supported Chart Types:

  • Line
  • Area
  • Column and Bar
  • Pie
  • Scatter and Bubble
  • Dynamic
  • Angular Gauge
  • Clock
  • Gauge with dual axes
  • VU meter
  • Polar chart
  • Spiderweb
  • Wind rose
  • Box plot
  • Error bar
  • Waterfall
  • Funnel chart
  • General drawing
145 questions
0
votes
1 answer

DotnetHighcharts ajax load data?

custom_scripts_graph.js (ajax post) $.ajax({ type: "POST", url: app_base_url + 'Graph/_IrregularChart', contentType: 'application/json; charset=utf-8', dataType: "json", data: chartParams, success: function (result) { …
AliRıza Adıyahşi
  • 15,658
  • 24
  • 115
  • 197
0
votes
1 answer

Dotnet highcharts not working (Missing assembly)

Hello im using MVC3 (Visual studio express 2012) I follow the instructions on this side; http://dotnethighcharts.codeplex.com/ I have made a new controller called TestHSController with a corresponding view. The problem is that when im trying to…
Tim
  • 289
  • 3
  • 23
0
votes
1 answer

HighChart not rendering perfectly in IE8

i integrated highcharts with Orchard1.6 everything was comes perfect but the problem is that the chart does not render perfectly in IE8, i dont know whether this is browser issue or i need to work out more for this here is the screen shot for that…
Ashok
  • 135
  • 1
  • 3
  • 13
0
votes
2 answers

Dotnethighcharts library

I've found a great libray at http://dotnethighcharts.codeplex.com/ It's a really great library, but i'm looking for someone who's willing to answer to the following question: How do i setup a title in my MVC action for the chart? Setting the title…
Robin
  • 527
  • 5
  • 16
0
votes
2 answers

Highcharts tooltipformat for each series?

I m using dotnetHightcharts BasicColumnChart public static Highcharts BasicColumnChart(Series[] Series, string[] Categories, string Title = "", string SubTitle = "", string XAxisTitle = "", string YAxisTitle = "", string ToolTipFormat = "", string…
AliRıza Adıyahşi
  • 15,658
  • 24
  • 115
  • 197
0
votes
1 answer

Messed up LineChart with highcharts

I'm using HighCharts to display charts on my site. What I'd like to achieve is just a line chart with (zoomable) Date-Time X-Axis and numbers in Y-Axis. But the result is messed up: I load data by an ajax call, create an array and use…
Kamyar
  • 18,639
  • 9
  • 97
  • 171
-1
votes
1 answer

How to edit the default colors on Styled mode pie - Highscharts?

I tried editing the pie slice colors but it is filling in the label line also. How to avoid this issue? https://codepen.io/jenfloods/pen/WNRELrP Also, how to apply the stroke color outside? I've gone to the Highcharts documentation and it is not…
-1
votes
1 answer

Highchart loading animation not working when giving 'verticalAlign' for 'setTitle'

I am building a pie chart with highchart. I need to set custom title for my pie chart. And I need to align it to the center of the pie chart. Everything works fine except the initial circle loading animation of pie chart. If I remove verticalAlign:…
hakkim
  • 666
  • 15
  • 36
-1
votes
1 answer

dotnet highchart asp.net with nav tabs bootstrap

There are something that i would like to ask about, for example this is my code when i want to display using this reference https://codepen.io/wizly/pen/BlKxo/ with dotnet highcharts or highcharts

Example 3

Faris Fajar
  • 121
  • 2
  • 12
-1
votes
1 answer

Converting a Datetime to string C#

Im new to C#. Im trying to create a line chart using DotNet High Chart in MVC5. I am trying to use Date which is a DateTime, from a database. I need to convert DateTime to a string in order for it to populate in High Chart var iOPLeftCount = (from d…
coto2
  • 179
  • 4
  • 15
1 2 3
9
10