c# – 滚动X轴绘图区域 – Silverlight柱系列

前端之家收集整理的这篇文章主要介绍了c# – 滚动X轴绘图区域 – Silverlight柱系列前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个柱系列图表,工作正常.

我有一个功能,我需要添加,我希望horizo​​ntall滚动启用到x轴的绘图区域.

这是屏幕截图:

如果你看到屏幕截图我有六个项目,并且由于更多的项目,条形图非常薄,所以假设我有20个项目,那么条形图将根本不可见.

那么我们可以使X轴条水平滚动吗?

编辑

ResourceDictionary.xaml

  1. <ResourceDictionary
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:convertor="clr-namespace:ChartingDV.Provider"
  5. xmlns:datavis="clr-namespace:System.Windows.Controls.DataVisualization;assembly=System.Windows.Controls.DataVisualization.Toolkit"
  6. xmlns:charting="clr-namespace:System.Windows.Controls.DataVisualization.Charting;assembly=System.Windows.Controls.DataVisualization.Toolkit"
  7. xmlns:chartingprimitives="clr-namespace:System.Windows.Controls.DataVisualization.Charting.Primitives;assembly=System.Windows.Controls.DataVisualization.Toolkit">
  8.  
  9. <ControlTemplate x:Key="PhoneChartPortraitTemplate" TargetType="charting:Chart">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="Auto"/>
  13. <RowDefinition Height="*"/>
  14. <RowDefinition Height="Auto"/>
  15. </Grid.RowDefinitions>
  16. <datavis:Title
  17. Content="{TemplateBinding Title}"
  18. Style="{TemplateBinding TitleStyle}"/>
  19. <datavis:Legend x:Name="Legend"
  20. Grid.Row="2"
  21. Header="{TemplateBinding LegendTitle}"
  22. Style="{TemplateBinding LegendStyle}">
  23. <datavis:Legend.ItemsPanel>
  24. <ItemsPanelTemplate>
  25. <StackPanel Orientation="Horizontal"/>
  26. </ItemsPanelTemplate>
  27. </datavis:Legend.ItemsPanel>
  28. <datavis:Legend.Template>
  29. <ControlTemplate TargetType="datavis:Legend">
  30. <Grid>
  31. <Grid.RowDefinitions>
  32. <RowDefinition Height="Auto" />
  33. <RowDefinition />
  34. </Grid.RowDefinitions>
  35. <ScrollViewer
  36. Grid.Row="1"
  37. HorizontalScrollBarVisibility="Auto"
  38. VerticalScrollBarVisibility="Disabled"
  39. BorderThickness="0"
  40. Padding="0"
  41. IsTabStop="False">
  42. <ItemsPresenter
  43. x:Name="Items"
  44. Margin="10,10,10"/>
  45. </ScrollViewer>
  46. </Grid>
  47. </ControlTemplate>
  48. </datavis:Legend.Template>
  49. </datavis:Legend>
  50. <chartingprimitives:EdgePanel
  51. Grid.Column="0"
  52. Grid.Row="1"
  53. x:Name="ChartArea"
  54. Style="{TemplateBinding ChartAreaStyle}">
  55. <Grid
  56. Canvas.ZIndex="-1"
  57. Style="{TemplateBinding PlotAreaStyle}" />
  58. </chartingprimitives:EdgePanel>
  59. </Grid>
  60. </ControlTemplate>
  61.  
  62. <!-- Chart Style for Phone -->
  63. <Style x:Key="PhoneChartStyle" TargetType="charting:Chart">
  64. <Setter Property="IsTabStop" Value="False" />
  65. <Setter Property="Padding" Value="10" />
  66. <Setter Property="Palette">
  67. <Setter.Value>
  68. <datavis:ResourceDictionaryCollection>
  69. <!-- Blue -->
  70. <ResourceDictionary>
  71. <SolidColorBrush x:Key="Background" Color="#E85F3D"/>
  72. <Style x:Key="DataPointStyle" TargetType="Control">
  73. <Setter Property="Background" Value="{StaticResource Background}" />
  74. </Style>
  75. <Style x:Key="DataShapeStyle" TargetType="Shape">
  76. <Setter Property="Stroke" Value="{StaticResource Background}" />
  77. <Setter Property="StrokeThickness" Value="2" />
  78. <Setter Property="StrokeMiterLimit" Value="1" />
  79. <Setter Property="Fill" Value="{StaticResource Background}" />
  80. </Style>
  81. </ResourceDictionary>
  82. <!-- Red -->
  83. <ResourceDictionary>
  84. <SolidColorBrush x:Key="Background" Color="#76D164"/>
  85. <Style x:Key="DataPointStyle" TargetType="Control">
  86. <Setter Property="Background" Value="{StaticResource Background}" />
  87. </Style>
  88. <Style x:Key="DataShapeStyle" TargetType="Shape">
  89. <Setter Property="Stroke" Value="{StaticResource Background}" />
  90. <Setter Property="StrokeThickness" Value="2" />
  91. <Setter Property="StrokeMiterLimit" Value="1" />
  92. <Setter Property="Fill" Value="{StaticResource Background}" />
  93. </Style>
  94. </ResourceDictionary>
  95. <!-- Light Green -->
  96. <ResourceDictionary>
  97. <SolidColorBrush x:Key="Background" Color="#648ED1"/>
  98. <Style x:Key="DataPointStyle" TargetType="Control">
  99. <Setter Property="Background" Value="{StaticResource Background}" />
  100. </Style>
  101. <Style x:Key="DataShapeStyle" TargetType="Shape">
  102. <Setter Property="Stroke" Value="{StaticResource Background}" />
  103. <Setter Property="StrokeThickness" Value="2" />
  104. <Setter Property="StrokeMiterLimit" Value="1" />
  105. <Setter Property="Fill" Value="{StaticResource Background}" />
  106. </Style>
  107. </ResourceDictionary>
  108. </datavis:ResourceDictionaryCollection>
  109. </Setter.Value>
  110. </Setter>
  111. <Setter Property="LegendStyle">
  112. <Setter.Value>
  113. <Style TargetType="datavis:Legend">
  114. <Setter Property="HorizontalAlignment" Value="Center"/>
  115. <Setter Property="VerticalAlignment" Value="Center"/>
  116. <Setter Property="BorderBrush" Value="{StaticResource PhoneForegroundBrush}"/>
  117. <Setter Property="Margin" Value="20"/>
  118. </Style>
  119. </Setter.Value>
  120. </Setter>
  121. <Setter Property="ChartAreaStyle">
  122. <Setter.Value>
  123. <Style TargetType="Panel">
  124. <Setter Property="MinWidth" Value="100" />
  125. <Setter Property="MinHeight" Value="75" />
  126. </Style>
  127. </Setter.Value>
  128. </Setter>
  129. <Setter Property="PlotAreaStyle">
  130. <Setter.Value>
  131. <Style TargetType="Grid">
  132. <Setter Property="Background" Value="Transparent"/>
  133. </Style>
  134. </Setter.Value>
  135. </Setter>
  136. <Setter Property="Template" Value="{StaticResource PhoneChartPortraitTemplate}"/>
  137. </Style>
  138.  
  139. </ResourceDictionary>

在XAMl文件中:

  1. <charting:Chart Name="barChart"
  2. Style="{StaticResource PhoneChartStyle}"
  3. Template="{StaticResource PhoneChartPortraitTemplate}">
  4. <charting:Chart.Series>
  5. <charting:ColumnSeries
  6. Title="Incorrect"
  7. IndependentValueBinding="{Binding Key}"
  8. DependentValueBinding="{Binding Value}"
  9. AnimationSequence="Simultaneous">
  10. </charting:ColumnSeries>
  11. <charting:ColumnSeries
  12. Title="Correct"
  13. IndependentValueBinding="{Binding Key}"
  14. DependentValueBinding="{Binding Value}"
  15. AnimationSequence="Simultaneous">
  16. </charting:ColumnSeries>
  17. <charting:ColumnSeries
  18. Title="Skipped"
  19. IndependentValueBinding="{Binding Key}"
  20. DependentValueBinding="{Binding Value}"
  21. AnimationSequence="Simultaneous">
  22. </charting:ColumnSeries>
  23. </charting:Chart.Series>
  24. </charting:Chart>

解决方法

最后我已经解决了,但我没有对API进行任何更改,而是我遵循了以下方法.

1)我们可以选择滚动整个图表.

2)使整个条形图滚动,然后删除Y轴值.

3)现在使用网格行定义创建一个具有Y轴值的虚拟布局.这将是您的根网格.

4)现在在根网格内放置图表网格.

5)现在,当您进行n次测试时,您可以滚动图表,但是具有Y轴值的虚拟布局保持不变,因此对于用户来说,它看起来像是滚动条.

请享用 :)

猜你在找的C#相关文章