彩票走势图

WPF图表控件Chart FX使用方法系列:如何创建Win/Loss图表

原创|使用教程|编辑:郝浩|2013-02-27 17:12:34.000|阅读 716 次

概述:Win/Loss 图表可以用来记录win/loss/tie记录,现在也越来越多的应用在仪表方面显示值的集合,在本次的文章中,在Chart FX for WPF中创建Win/Loss 图表。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

   Win/Loss 图表可以用来记录win/loss/tie记录,现在也越来越多的应用在仪表方面显示值的集合,在本次的文章中,在Chart FX for WPF中创建Win/Loss 图表。

<cfx:Chart.AllSeries>
    <cfx:AllSeriesAttributes>
      <cfx:AllSeriesAttributes.GalleryAttributes>
        <cfxwinloss:WinLoss Goal="30"
                            LossFill="#FF8B89" LossStroke="#FF8B89"
                            WinFill="#909090" WinStroke="#909090"/>
      </cfx:AllSeriesAttributes.GalleryAttributes>
    </cfx:AllSeriesAttributes>
  </cfx:Chart.AllSeries>
  <cfx:Chart.ConditionalAttributes>
    <cfx:ConditionalAttributes Fill="#007010" Stroke="#007010">
      <cfx:ConditionalAttributes.Condition>
        <cfxData:AndCondition>
          <cfx:RangeCondition From="30"/>
          <cfxData:MaximumValueCondition/>
        </cfxData:AndCondition>
      </cfx:ConditionalAttributes.Condition>
    </cfx:ConditionalAttributes>
    <cfx:ConditionalAttributes Fill="Red" Stroke="Red">
      <cfx:ConditionalAttributes.Condition>
        <cfxData:AndCondition>
          <cfx:RangeCondition To="30"/>
          <cfxData:MinimumValueCondition/>
        </cfxData:AndCondition>
      </cfx:ConditionalAttributes.Condition>
    </cfx:ConditionalAttributes>
  </cfx:Chart.ConditionalAttributes>

WPF图表控件Chart FX使用方法系列:如何创建Win/Loss图表

    最后,将会使用WinLoss显示一个新的功能,当图表的尺寸、点数量、或是两者结合产生的条形时,这个功能在条形图中非常的有用,问题是使用doubles计算尺寸和位置。这将会使得WPF 缩放和的独立的像素像预期的一样工作,但是可能会产生一个问题,在条间的距离不变。比如说,如果现在切换到24点每个产品,设置图表的尺寸为120像素,就 会出现以下的情况:

WPF图表控件Chart FX使用方法系列:如何创建Win/Loss图表

     在PlotArea中有个新的属性叫做PixelSnapMethod现在支持三种值:

None:默认值,对于所有的操作都使用double

Full:确定条的尺寸以及条形之间的距离是固定的,注意这也可能会在图表侧面生成白色区域

Marker:固定条形之间的区域,但是标记可能会有所不同

<cfx:Chart.PlotArea>
    <cfx:PlotAreaAttributes Margin="0" AxesStyle="None"
                            Background="{x:Null}" Stroke="{x:Null}"
                            PixelSnapMethod="Full"/>
  </cfx:Chart.PlotArea>

WPF图表控件Chart FX使用方法系列:如何创建Win/Loss图表


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@cahobeh.cn

文章转载自:慧都控件

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP