chart

  1. R

    Chart - How to set column spacing

    Hi there. I have this code to my chart, using C# WinForms: chart1.Series[0].IsVisibleInLegend = false; chart1.Series[0].ChartType = SeriesChartType.Line; chart1.Series[0].Points.DataBindXY(Enumerable.Range(0, 5000).ToArray(), array1); The result is below: I'd like to set the X legend to...
  2. K

    Library for drawing charts in C#

    I am looking for a library that will allow me to create a line graph on which I can draw my own elements. At the end of the method, the plot should be returned as a photo.
  3. Budhikakgsl

    TCP Client Data Plot in Winform

    I need to plot the data from the server in a GUI in client. I am getting the data from the server to the client on PC. What I am currently doing is getting the data to a text box and each text is put into a array and data is taken from the array and plot the graph. Is there any other easy...
  4. L

    Question How can I not update my chart

    My Form has two buttons. Each generates different values in a table in the database. The chart should be updated by clicking on each button, but appears only the values that were in the database at the time the program was run. The table data are displayed in a datagridview to validate whether...
Back
Top Bottom