當前位置: 首頁>>代碼示例>>C#>>正文


C# Axis.InverseTransform方法代碼示例

本文整理匯總了C#中OxyPlot.Axes.Axis.InverseTransform方法的典型用法代碼示例。如果您正苦於以下問題:C# Axis.InverseTransform方法的具體用法?C# Axis.InverseTransform怎麽用?C# Axis.InverseTransform使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在OxyPlot.Axes.Axis的用法示例。


在下文中一共展示了Axis.InverseTransform方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: InverseTransform

 /// <summary>
 /// Inverse transform the specified screen point.
 /// </summary>
 /// <param name="x">The x coordinate.</param>
 /// <param name="y">The y coordinate.</param>
 /// <param name="yaxis">The y-axis.</param>
 /// <returns>The data point.</returns>
 public virtual DataPoint InverseTransform(double x, double y, Axis yaxis)
 {
     return new DataPoint(this.InverseTransform(x), yaxis != null ? yaxis.InverseTransform(y) : 0);
 }
開發者ID:gutyoh,項目名稱:oxyplot,代碼行數:11,代碼來源:Axis.cs

示例2: ZoomAt

        /// <summary>
        /// Zooms at the specified position.
        /// </summary>
        /// <param name="axis">
        /// The axis.
        /// </param>
        /// <param name="factor">
        /// The zoom factor.
        /// </param>
        /// <param name="x">
        /// The position to zoom at.
        /// </param>
        public void ZoomAt(Axis axis, double factor, double x = double.NaN)
        {
            if (double.IsNaN(x))
            {
                double sx = (axis.Transform(axis.ActualMaximum) + axis.Transform(axis.ActualMinimum)) * 0.5;
                x = axis.InverseTransform(sx);
            }

            axis.ZoomAt(factor, x);
        }
開發者ID:aleksanderkobylak,項目名稱:oxyplot,代碼行數:22,代碼來源:Plot.cs


注:本文中的OxyPlot.Axes.Axis.InverseTransform方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。