动态数据显示等值线白边

时间:2012-02-07 09:51:04

标签: c# wpf graph dynamic-data-display

我有一个如下图: Graph

我希望它看起来像这样: enter image description here

我一直在使用动态数据显示器的Isoline库。

问题在于,在右上角,该区域是彩色的,即使该区域中的所有值都为0(因此等值线停止的原因)。 有谁知道我是否有办法调整我的.xaml文件,以便该区域只显示白色背景颜色?

提前谢谢你,

CX

我当前的.xaml文件如下所示:

<Window x:Class="IntensityChart.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d3="http://research.microsoft.com/DynamicDataDisplay/1.0"
    Title="DynamicDataDisplay Sample - Intensity Chart" WindowState="Maximized"
    Icon="{x:Static d3:D3IconHelper.DynamicDataDisplayWhiteIcon}">
<Grid>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="Auto"/>
        <ColumnDefinition Width="*"/>
    </Grid.ColumnDefinitions>
    <Grid.RowDefinitions>
        <RowDefinition Height="*"/>
        <RowDefinition Height="Auto"/>
    </Grid.RowDefinitions>

    <d3:ChartPlotter Name="plotter" Grid.Row="0" Grid.Column="1">
        <d3:ViewportHostPanel>
            <Image Name="image" d3:ViewportPanel.ViewportBounds="0,0,2,1.5" Stretch="Fill"/>
        </d3:ViewportHostPanel>

        <d3:IsolineGraph Name="isolineGraph"/>
        <d3:IsolineTrackingGraph Name="trackingGraph"/>
        <d3:CursorCoordinateGraph/>

        <d3:CursorCoordinateGraph/>
        <d3:AxisCursorGraph/>
    </d3:ChartPlotter>

</Grid>

1 个答案:

答案 0 :(得分:2)

我对Isolines没有多少工作,但根据我所知道的信息,看起来你必须改变你用于图表的调色板类。有一个讨论概述了D3讨论板上的解决方案。

Discussion

你可以在那里接受建议并根据你的数据创建一个比率,或者你可以直接到源和调色板类,告诉所有0值用白色着色。