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


C# PlotModel.GetDefaultColor方法代碼示例

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


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

示例1: SetDefaultValues

        /// <summary>
        /// The set default values.
        /// </summary>
        /// <param name="model">
        /// The model.
        /// </param>
        protected internal override void SetDefaultValues(PlotModel model)
        {
            // todo: should use ActualLineStyle
            if (this.Color == null)
            {
                if (this.LineStyle == LineStyle.Undefined)
                {
                    this.LineStyle = model.GetDefaultLineStyle();
                }

                this.defaultColor = model.GetDefaultColor();

                // And MarkerFill will be overridden if not set to null
                if (this.MarkerFill == null)
                {
                    this.MarkerFill = this.defaultColor;
                }
            }
        }
開發者ID:jgodinez,項目名稱:OxyPlot.2DGraphLib.MonoTouch,代碼行數:25,代碼來源:LineSeries.cs

示例2: SetDefaultValues

 /// <summary>
 /// Sets the default values.
 /// </summary>
 /// <param name="model">
 /// The model.
 /// </param>
 protected internal override void SetDefaultValues(PlotModel model)
 {
     if (this.Color == null)
     {
         this.LineStyle = model.GetDefaultLineStyle();
         this.defaultColor = model.GetDefaultColor();
     }
 }
開發者ID:jgodinez,項目名稱:OxyPlot.2DGraphLib.MonoTouch,代碼行數:14,代碼來源:HighLowSeries.cs

示例3: SetDefaultValues

 /// <summary>
 /// The set default values.
 /// </summary>
 /// <param name="model">
 /// The model.
 /// </param>
 protected internal override void SetDefaultValues(PlotModel model)
 {
     if (this.FillColor == null)
     {
         this.defaultFillColor = model.GetDefaultColor();
     }
 }
開發者ID:jgodinez,項目名稱:OxyPlot.2DGraphLib.MonoTouch,代碼行數:13,代碼來源:IntervalBarSeries.cs

示例4: SetDefaultValues

 protected override void SetDefaultValues(PlotModel model)
 {
     if (this.Color.IsAutomatic())
     {
         this.defaultColor = model.GetDefaultColor();
     }
 }
開發者ID:benjaminrupp,項目名稱:oxyplot,代碼行數:7,代碼來源:DiscussionExamples.cs

示例5: SetDefaultValues

 /// <summary>
 /// The set default values.
 /// </summary>
 /// <param name="model">
 /// The model.
 /// </param>
 protected internal override void SetDefaultValues(PlotModel model)
 {
     foreach (var slice in this.Slices)
     {
         if (slice.Fill == null)
         {
             slice.DefaultFillColor = model.GetDefaultColor();
         }
     }
 }
開發者ID:jgodinez,項目名稱:OxyPlot.2DGraphLib.MonoTouch,代碼行數:16,代碼來源:PieSeries.cs


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