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.
私は .net 4 チャートを使用しています。複数の列をグループ化する必要があるチャートをプロットする必要があります。解決策は、私のニーズに完全に適合する DataBindCrossTable 関数を使用することです。ただし、グラフは列ではなく線として描画する必要があります。DataBindCrossTable は、棒グラフでは機能せず、列のみで機能するようです。
列を水平に回転させる方法やその他の解決策はありますか?
ありがとうございました
コード ビハインド ファイルで、シリーズごとに Series.ChartType 値を StackedBar に変更します。
C#:
foreach (Series data in chtChartControl.Series) { data.ChartType = SeriesChartType.StackedBar; }