Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
添付のように asp グラフに値がありますが、必要なのは各バーに異なる値を表示することです。
たとえば、棒グラフの 5 の代わりに (5 を表示するラベルの代わりに) 50 を表示する必要があります。
私が知りたいのは、各バーに表示されるラベルを操作するために、以下のようなプロパティを使用する必要があることです。
Chart1.ChartAreas[0].AxisX.TitleFont = new Font("Times New Roman", 11f);
前もって感謝します。
ラベルの値は次のように設定できます。
Chart1.Series["Series1"].Points[counter].Label = "2";