チャート コントロールを作成し、チャートを既存のフォームに配置する方法がわかりません。Web で見つけたすべての例は新しいフォームのチャートを示していますが、既存のフォームの 1 つにチャートを追加したいと考えています。
私はこのようなことを考えています:
let form = new Form(Text="My form")
let lbl = new Label(Text="my label")
let chart = Chart.Area ["a", 10; "b", 20]
form.Controls.Add lbl
form.Controls.Add chart
// ---> The type 'ChartTypes.GenericChart' is not compatible with the type 'Control'
Application.Run(form)
ありがとう!