Visual Studio Detailed C # Chart

I am creating a small program that shows us the total monthly sales amount through a graph, but my chart is not detailed enough, it shows, for example, what amount in 2012'07 was something between 20 and 40, but I need an exact value. (32.4)

enter image description here

Help needed.

code

private void formGraph() { string database, host, user, pass, sqlParams, sqlQuery; string resultPassword = String.Empty; database = ""; host = "localhost"; user = ""; pass = ""; sqlParams = "Database=" + database + ";Data Source=" + host + ";User Id=" + user + ";Password=" + pass; sqlQuery = "SELECT YEAR(`importdate`) as 'Year', MONTH(`importdate`) as 'Month', SUM(`price`) as 'Sum' FROM `data` GROUP BY MONTH(`importdate`), YEAR(`importdate`) ORDER BY YEAR(`importdate`), MONTH(`importdate`) ASC LIMIT 12"; MySqlConnection sqlConnection = new MySqlConnection(sqlParams); MySqlCommand sqlCommand = new MySqlCommand(sqlQuery, sqlConnection); try { sqlConnection.Open(); MySqlDataReader sqlReader = sqlCommand.ExecuteReader(); if (sqlReader.HasRows) { while (sqlReader.Read()) { string Sum = sqlReader["Sum"].ToString(); if (Sum.Contains(",")) Sum = Sum.Replace(",", "."); if (Sum == "0") Sum = "1"; chart1.Series.Add(sqlReader["Year"].ToString() + '\'' + sqlReader["Month"].ToString()); chart1.Series[sqlReader["Year"].ToString() + '\'' + sqlReader["Month"].ToString()].Points.AddY(Sum); //sqlReader["Year"].ToString() + '"' + sqlReader["Month"].ToString() } } } catch (MySqlException sqlError) { MessageBox.Show("Error", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } finally { sqlConnection.Close(); } } 
+4
source share
2 answers

You need to go through all the series that you have and set the IsValueShownAsLabel property to true. How to do this, do the first:

 Chart1.Series[0].IsValueShownAsLabel = true; 

Hope this helps you!

+3
source
 Chart1.Series(Series1.Name).Font = New System.Drawing.Font("Arial", 10.0F, System.Drawing.FontStyle.Italic) 

If you replace the name Series1.Name with yours, it should work = the displayed value on top of the column

 Chart1.Series(Series1.Name).IsValueShownAsLabel = True; 
+3
source

All Articles