Tagged Questions
0
votes
0answers
19 views
How to add a fixed point to an axis using auto-scale
I'm using the Chart control to draw time-series plots of signed integers, but I want to always have a zero line along the y-axis. I wish to retain the ability to change the max/min. Is this possible?
0
votes
0answers
46 views
Chart Control with Elapsed Time in X axis
How to change this code to show elapsed time (minutes)on X axis?
chartArea1.AxisX.LabelStyle.Format = "00:00";
private void timerRT_Tick_(object sender, EventArgs e)
{
addPoint();
...
-5
votes
0answers
44 views
Empty stock chart when creating [closed]
When create a stock chart in vb.net it came empty:
' Create a new instance of the child form.
Dim ChildForm As New System.Windows.Forms.Form
' Make it a child of this MDI form before showing it.
...
1
vote
1answer
127 views
C# Winforms - Creating a chart with multiple Y axis (3 or more)
I have a client that needs to use charts with more than 2 Y axes.
I am already using Component One (C1Chart) chart that has a built in Y2 axis and its working
great.
Does anyone knows of a chart ...
0
votes
1answer
75 views
How to retrieve the selected range in the .Net WinForms Chart Control?
I'm using the C# built-in Winforms Chart control (System.Windows.Forms.DataVisualization.Charting.Chart) with its built-in ability to let the user select a range. What I'd like to do is to read back ...
2
votes
1answer
76 views
How to get the zoom event of a C# chart
I have a chart (the standard chart that comes with win-forms visual studio) that I've set up zooming on. Every time this chart is zoomed I would like to run a function, however I cannot find an event ...
2
votes
3answers
120 views
How do I get the executable to run on other computers without creating a setup,
I have a program that graphs a text file with some data in it. It works in the debug/release modes of VS 2010 C#. I'm using the .Net and Aforge frameworks. In my references is AForge.Math and the ...
0
votes
1answer
99 views
Customizing x-axis MS C# Chart labels for MS Chart
I am trying to label on the x-Axis each data point of BarChart. Right now as you see in the attached picture only 4 Bar are labelled (4/1/2012, 7/1/2012, 10/1/2012, 1/12013). I played with the ...
0
votes
1answer
76 views
Visual Studio chart line below zero
This is chart i have
i am printing it with this code :
try
{
sqlConnection.Open();
MySqlDataReader sqlReader = sqlCommand.ExecuteReader();
if ...
0
votes
2answers
99 views
How to move C# form legend with mouse?
I am creating a plotting program and I was wondering how to move a chart's legend with the mouse? So you would click on the legend and then you could move it anywhere inside the chart area.
0
votes
1answer
130 views
How to use a personalized property grid with a Chart class?
I am working on a graphing program and I want the user to customize their graph quickly and effectively. I have created a property grid which allows them to do that. I've populated it with the ...
0
votes
1answer
88 views
Professinal charting tool - winforms /WPF
I'm looking for a professional charting tool for the .NET environment,
preferably in WFP, but winforms is also a valid option.
The tool should support RTL languages (Hebrew, Arabic) and must be able ...
0
votes
1answer
251 views
winforms: Reading from serialport and plotting real time data. Many errors/bugs
I'm trying to acquire data from an MCU, save them to a file and plot them. The code functions properly for some time, then just hangs randomly (sometimes after 1 sec, sometimes after 1 minute ...!). ...
0
votes
1answer
92 views
Gap between the first X datetime value and the Y axis
In my application, I use mschart to display data using a x axis with datetime value and an Y axis with numeric (double) values.
However, I have noticed that there is a small gap between the Y axis ...
0
votes
1answer
271 views
MS Chart color and legends in Winforms
I use a Microsoft Chart in one of my forms. I selected a Pie Chart.
Then, in runtime, I assign the values and legends I need like this:
{
double[] yValues = { valor_pendiente, ...
0
votes
0answers
70 views
How to set zoom after adding all the points in winform chart c#?
vs2010
added some points using
chart1.Series[1].Points.AddXY(x, y);
Maybe several thousands or millions points.
Anyway, the chart will draw all the points by default, but it is too slow.
So ...
0
votes
1answer
90 views
How to get the points in the current scaleView in chartarea c# winform?
.net 4 vs2010 winform c#
added some points using
chart1.Series[0].Points.AddXY(x,y);
then zoom the x axis using
chart1.ChartAreas[0].AxisX.ScaleView.Zoom(a,b);
Are the any methods to return all ...
0
votes
3answers
165 views
How to find the nearest point in the chart?
.net 4
vs2010
winform
c#
added some points using
chart1.Series[0].Points.AddXY(x,y);
when I click on the chart, the cursor may not fall on any points.
Are there any functions to return the nearest ...
0
votes
1answer
138 views
How to deal with large data in winform chart
I made a simple chart, one series, added points by
chart1.series[0].points.addxy(x,y);
it works fine for a small set of data,
but sometimes I need as many as 10 million points, and it is ...
0
votes
1answer
250 views
Devexpress XtraChart sorts series by default
I've a Devexpress XtraChart (Bar Chart) that displays gender information over range of months and years. Here is how I set some of the properties:
DataTable chartTable = new DataTable("Table1");
...
1
vote
0answers
184 views
MSChart does not show max labels
I have to point out, that my chart is hosted in WPF, maybe it matters.
There is nothing fancy here.
Top AxisY label is not shown when I am explicitly setting Minimum and Maximum properties.
Right ...
0
votes
0answers
73 views
Zedgraph: 'System.Reflection.TargetInvocationException'
I'm trying to create a real time graph using Zedgraph. Here is my code:
public ref class Form1 : public System::Windows::Forms::Form
{
public:
array<double>^ adc_array;
...
2
votes
1answer
671 views
How to bind data to chart in winforms and refresh chart?
I tried to bind chart to generatedSequence of type List<float>. How to update chart control after binding?
I tried this but with no luck:
chart1.DataSource = new ...
0
votes
2answers
411 views
How to add point that distribute evenly on XAxis in mschart?
c# mschart vs2010 .net4
chart1.Series[0].Points.AddXY(0, 1);
chart1.Series[0].Points.AddXY(7, 1;
chart1.Series[0].Points.AddXY(8,1);
i was hoping that the 3 points looks like this
. ...
0
votes
1answer
102 views
How can i modify the background of the chart
How can I remove the "-----Series1" text (top right, near button1)
How can I make the blue stepline thinker, and remove the background lines?
How can I draw color to the background, such as the ...
0
votes
0answers
60 views
fast real-time charting tool?
I'm looking for a FREE and reliable plotting tool which could do the following:
multiple series support
update every 10ms
during these 10ms, data is added to multiple series.
For example:
0ms ...
0
votes
1answer
265 views
ScaleView.minSize does not work properly on chart with date/time on axis
I'm building a winforms application with a chart (system.windows.forms.datavisualization.Charting.ChartArea). The series in this chart have date/time on the AxisX and float on the AxisY.
No matter ...
0
votes
0answers
146 views
How to present line chart vertically
I have problem with RDLC report (winforms). I need to present data in line chart vertically.
Here is the way it should look like: http://tinypic.com/r/2s191jp/6
It's easy task in winforms component ...
1
vote
0answers
94 views
how to set tooltip for customlabels in chart in winform
C# vs2010 winform
built a chart and added some points like this
chart1.Series[0].Points.AddXY(0, 1);
chart1.Series[0].Points.AddXY(1, 3);
and i also added some customelabels like this.
...
1
vote
1answer
152 views
display disabled series in legend
I have a checkbox that allows my program to enable disable series displayed on my chart. When I disable the serie, it is removed from the chartArea and as well from the legend. Is it possible to keep ...
0
votes
2answers
239 views
C# how to label y axis as string rather than numbers?
i have used c# vs2010
winform
i made a basic chart, and added points like this:
chart1.Series[0].Points.AddXY(0, 1);
chart1.Series[0].Points.AddXY(1, 3);
but i want the y axis to display "A", ...
4
votes
3answers
344 views
Increase bar chart values with button clicks
I am trying to create a graph that will show the progress of a workout. Every five button clicks a tick should be added to the graph. This is a example of how it should look.
For demonstration ...
0
votes
0answers
114 views
backgroundworker too slow
Unfortunately I need help again getting my code to function properly. Ther problem lies in the following section:
private: System::Void backgroundWorker1_DoWork(System::Object^ sender, ...
0
votes
1answer
138 views
How to change Microsoft Chart Control minimum and maximum values?
All my values lie between 1.5 and 1.6 but the Chart Control draws the chart to fit values from 0 to 2. As the result the chart looks pretty ugly and hardly readable:
How to make it to display more ...
0
votes
0answers
224 views
Plotting chart with automatic update and interval of user's choice
I have a problem which I can't solved for quite awhile.
so the case is this,
It's a pulse sensor window form application (C# visual studio 2012 express).
I have a table, a chart(line graph), a ...
2
votes
1answer
586 views
Mousewheel event not firing
I've looked at this thread concerning the exact same problem but that solution didn't work for me.
Basically what I am trying to accomplish is a mouse wheel event when the user is interacting with a ...
0
votes
2answers
141 views
How to add check box to series in a chart in c#?
I have a chart with multiple series as lines. These are appearing in the legend and i am trying to add some sort of control to the user so that it is possible to enable or disable the series in the ...
0
votes
0answers
167 views
VB.Net Microsoft Chart - create multiple charts without displaying on form
I need to create a set of chart images to be imported into a PDF file. My program will display the first chart on a winform using MS Chart. I can save that using the SaveImage method.
What I want to ...
0
votes
1answer
443 views
Resize MSChart to Fit Pagesize Before Printing
I am struggling to figure out how to get an MSChart to fill the entire page when printing. Can someone tell me why the code below does not work and/or suggest another approach. I apologize for my ...
1
vote
2answers
1k views
Why Doesn't MSChart Fill Entire Chart Area?
I am working on creating a couple of charts and I cannot figure out why there is so much empty space on the left and right side of the chart. I have a Winforms Chart, ChartArea, and Series and there ...
1
vote
2answers
938 views
Windows Forms Chart - Add A Value Marker
I've created a chart in windows forms where the X axis has DateTime values (hh:mm:ss). I'd like to add a fixed line to the chart on a certain value - for example, have a line on the grid for X = ...
1
vote
1answer
3k views
How do I create a bar chart showing percentages bound to a list of objects?
Using the DataVisualization.Charting.Chart control, I need to create a bar chart (maybe stacked bar chart) that shows per person the number of hours booked for that person and a those hours' ...
1
vote
1answer
331 views
How may I get the image of DataVisualization.Charting.Chart to iTextSharp.text.Image without writing to a file?
I'm writing a piece of software for visualization of measurement data. For this I use System.Windows.Forms.DataVisualization.Charting.Chart and I do know that I can get the shown image by ...
2
votes
1answer
736 views
How to set chart bar's width?
I'm using Visual Studio 2010 to write a Winforms application in C#. I'm using the chart control from the regular toolbox to view data from my SQL database. As you see, the bar is very wide. Is there ...
1
vote
3answers
2k views
How can I add a pie chart to my winforms application?
I am trying to add a pie chart to my winforms application - but the only chart I can find in my toolbox is the regular bar chart.
Is there any way to form this bar chart as a pie chart or add a ...
1
vote
1answer
612 views
How can I fix the number of MinorGrid lines to a fixed number in Microsoft's .NET 4.0 Chart?
I am trying to set a fixed number of minor grid lines in a .NET 4.0 Chart whose X axis is in a Logarithmic scale.
I try to set the "Axis.Minor.Interval" property, this only makes the grid lines ...
0
votes
3answers
627 views
populate a series from a sql query C#
I'm using working in a C# winforms .NET4 application
My goal is to populate a chart control from a specific SQL query.
"SELECT height from person"
simple query but im not sure the best way to ...
0
votes
0answers
229 views
WinForms Chart - Area Chart with Logarithmic Y Axis
I'm usnig .NET 4 and VS2010 C#
I have a chart with a logarithmic Y Axis, and am trying to make a chart with a series of area type. The Y values are 1E-02 to 1E+02. The problem is that the area chart ...
0
votes
1answer
111 views
Synfusion chart control charttype hiloopenclose
I am using Visual Studio 2010 along with Syncfusion Essential Studio 10.2.0.56.
I want to change the shape of open close symbols from horizontal lines to circle in hi low open close charttype in ...
0
votes
0answers
169 views
Why the zoom level of my .net chart component is set to maximum on load
I've an issue with the .Net chart component.
When my form loads, I manually set the zoom level of the chart (it's a bar chart)
but the zoom level is set very hight.
this bug occurs randomly.
when I ...
