I want to show my point(X axis and Y axis) value below my chart as a table format. and every point located just below the point of chart.
This is my actual output screen.
This is my expected output screen.
My class Code is below:
private void button1_Click(object sender, EventArgs e)
{
foreach (Series b in chart1.Series)
{
b.Label = "#VALY{#,##0}";
}
chart1.Series["Series1"].ChartType = SeriesChartType.Spline;
chart1.Series["Series1"].MarkerStyle = MarkerStyle.Circle;
chart1.Series["Series1"].Color = Color.Blue;
for (int j = 0; j < 10; j++)
{
chart1.Series["Series1"].Points.AddXY(j+1, j*2);
}
}