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;