DotnetCharting (.netCHARTING) is a commercial charting solution for the .Net framework, developed and maintained by Corporate Web Solutions Ltd., based in Vancouver, Canada.
Questions tagged [dotnetcharting]
20 questions
9
votes
2 answers
My F# Chart Library doesn't work in a project
open FSharp.Charting
open System
[]
let main argv =
printfn "%A" argv
let x = Chart.Line [ for x in -100 .. 100 -> x, pown x 3]
let y = Console.ReadKey();
0 //return an integer exit code
Hello, I'm trying to play with…

Luke Xu
- 2,302
- 3
- 19
- 43
6
votes
2 answers
FSharpChart.SaveAs () saves blank image if called before chart rendering is complete
When run in F# Interactive, I expect the following code to create a simple pie chart and save it to disk:
let pie = FSharpChart.Pie([("Apples",1);("Oranges",2);("Bananas",3)])
FSharpChart.SaveAs "test.png" ChartImageFormat.Png pie
However, what…

Kevin D.
- 911
- 1
- 6
- 18
3
votes
1 answer
How to stop showing decimal points in Y Axis in WPF DataVisualization charts
I am using WPF DataVisualization chart control to show some sample data. My problem is Y axis is showing decimal values. How can I make it show only integer values.
This is my XAML code for the

Kakopappa
- 207
- 2
- 8
1
vote
2 answers
Dot Net Charting - Stack two series, leave the other as normal bar chart
I have a dotnetcharting graph with 3 series. I can change the style of the whole graph to stacked.
ChartIn.YAxis.Scale = Scale.Stacked;
But I want to just stack two out of the three series. So that for each there are two bars combined into one…

Hoody
- 3,361
- 9
- 45
- 55
1
vote
2 answers
.net chart crashes with large decimal as point value
I have some problems with a .net chart series. I add points to the series like this
point = new DataPoint();
point.AxisLabel = result.Code;
point.YValues = new double[] { pointValue };
For the value 4.0343262175104857E+28, chart.SaveImage()…

AGuyCalledGerald
- 7,882
- 17
- 73
- 120
1
vote
1 answer
Remove extra x axis values
I'm having trouble removing extra values in the x column. Basically, my graph doesn't start at 0, nor does it end at my last data point. I have tried starting the axis at 0, as well as setting the interval offset to -20 (my interval is 20).
Is…

Robert Woods
- 350
- 1
- 6
- 17
1
vote
1 answer
How to align labels properly using System.Web.UI.DataVisualization.Charting
I have a chart which generated through System.Web.UI.DataVisualization.Charting.
Below is the code
public ActionResult MBRRChart()
{
//Area for generating chart type Range bar
List objGraphList = new…

Nithin Paul
- 2,169
- 3
- 33
- 55
1
vote
1 answer
System.Web.UI.DataVisualization.Charting and Rangebar chart integration
By using following code my chart looks like following image after code.
My question is now the bar and y axis points are not aligned correctly.
How do i show range bar and its corresponding y axis values in the same line?
List…

Nithin Paul
- 2,169
- 3
- 33
- 55
1
vote
1 answer
How to work with System.Web.UI.DataVisualization.Charting
This is what i did so far. Please go through the entire description to know my requirement
System.Web.UI.DataVisualization.Charting.ChartArea chartArea1 = new System.Web.UI.DataVisualization.Charting.ChartArea();
…

Nithin Paul
- 2,169
- 3
- 33
- 55
1
vote
0 answers
Avoiding slim SeriesChartType.Area aliasing out of existence
Using C# and .Net 4 (I've also tried 4.5.1) I want to draw various areas on a chart representing different timespans, some short, some long. For very short timespans (less than a pixel?) some (but not all) disappear. Different ones disappear as the…

erac
- 155
- 7
1
vote
1 answer
Odd %Value in legend box of area chart (.NET charting)
I'm creating an area chart that contains multiple Series, each of them containing one Element for each calender week. Those Series will be displayed stacked in the area chart.
I also need a legend box that displays the name of each series in…

jalgames
- 781
- 4
- 23
0
votes
1 answer
Create break in .Net Chart series bound to a DataTable
I have a .Net chart where a series is bound to DataTable using .XValueMember and .YValueMember with series ChartType = Line. I would like to prevent a line being drawn between 2 specified sequential items in the DataTable. Is this possible without…

SimonKravis
- 553
- 1
- 3
- 24
0
votes
1 answer
C# Column Chart skips XValueMember value but displays YValueMember value
Code
DataSet ds = new DataSet();
con.Open();
SqlDataAdapter adapt = new SqlDataAdapter("select top 10 p.customername, ISNULL(SUM(c.total),0) as total from table_customerpurchases as c Left join table_customers as p on…

hot spot
- 19
- 1
- 8
0
votes
0 answers
c# chart control AxisX wrap around
I have a chart control that has a series of dates plotted along the x axis. There are 120 dates, each for a different day. When these dates are plotted, the graph wraps around itself and plots the graph as multiple lines (basically its circled…

proteus
- 545
- 2
- 12
- 36
0
votes
2 answers
Which free charting library is available for UWP apps
I want to build a UWP app with gauges and some simple charts and don't want to buy a commercial product (at this stage of the project). What options are there for UWP apps?

Dennis Mulder
- 119
- 5