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.NET チャート軸の値を表示するにはどうすればよいですか? したがって、0、1、10、100、1000 などを表示する代わりに、0、1、10、10^2、10^3 を表示したいと考えています。
System.Web.UI.DataVisualization.Charting.Chartコントロールについて話している場合、のAxisメンバーにはプロパティChartAreaがあります。IsLogarithmic
System.Web.UI.DataVisualization.Charting.Chart
Axis
ChartArea
IsLogarithmic
chart.ChartAreas[0].AxisX.IsLogarithmic = true;