I used a chart1_Customize function in my program , but the program don't reach it. Am I supposed to change something in the designer?
Here's the function:
private void chart1_Customize (object sender, EventArgs e)
{
int count = 0;
foreach (CustomLabel lbl in chart1.ChartAreas[0].AxisX.CustomLabels)
{
lbl.Text = range[count];
count++;
}
}