Chart creating dynamically. in .net, c#

前端 未结 5 1205
野性不改
野性不改 2020-12-07 20:32

Does anybody have some experience working with charts in .NET? Specially I want to create them programmatically.

using System;
using System.Coll         


        
5条回答
  •  余生分开走
    2020-12-07 21:38

    Try to include these lines on your code, after mych.Visible = true;:

    ChartArea chA = new ChartArea();
    mych.ChartAreas.Add(chA);
    

提交回复
热议问题