2

使用 WPF(不是 Silverlight)D3,是否可以在 Y 轴上放置字符串?我特别谈论一种情况,其中我有一个带有状态值的时间线图(假设“高”、“中”和“低”映射为 1、0 和 -1)并且想要 y 轴上的状态记号而不是数字...

谢谢!

4

2 回答 2

3

您可以使用 LabelProvider 来实现您想要的效果。您必须创建一个新的 LabelProvider 类,该类源自 LabelProviderBase,或者更具体地说,在您的情况下,NumericLabelProviderBase。您应该能够获取您拥有的所有刻度 (1,0-1),并使用新 LabelProviderClass 中的 if 或开关将它们更改为字符串。在标签提供者的源代码中有大量示例,您可以将其用作基础。

您要覆盖的方法是 CreateLabels。这是我提出的一种快速方法,应该(希望!)让你到达你需要的地方。在您创建的新类中实现。

public override UIElement[] CreateLabels(ITicksInfo<double> ticksInfo) {            

        var ticks = ticksInfo.Ticks;
        Init(ticks);            

        UIElement[] res = new UIElement[ticks.Length];
        LabelTickInfo<double> tickInfo = new LabelTickInfo<double> { Info = ticksInfo.Info };
        for (int i = 0; i < res.Length; i++) {
            tickInfo.Tick = ticks[i];
            tickInfo.Index = i;
            string labelText = "";

            if(Convert.ToInt32(tickInfo.Tick) == 1) {
                labelText = "High";
            } else if(Convert.ToInt32(tickInfo.Tick) == 0) {
                labelText = "Medium"
            } else if(Convert.ToInt32(tickInfo.Tick) == -1) {
                labelText = "Low"
            } else {
                labelText = ""
            }

            TextBlock label = (TextBlock)GetResourceFromPool();
            if (label == null) {
                label = new TextBlock();
            }

            label.Text = labelText;
            label.ToolTip = ticks[i].ToString();

            res[i] = label;

            ApplyCustomView(tickInfo, label);
        }
        return res;
    }

要将这个新的 LabelProvider 分配给 ChartPlotter,请在 XAML 中命名要标记的轴,或在 C# 中将其创建为对象:

yAxis.LabelProvider = new ZazkapulskLabelProvider();
于 2012-11-13T21:28:14.470 回答
0

Dont use upper solution. Make my VS many compiler errors. I'm trying that solution on VS2013 on 3 hours but didnt work. Use that solution wherein function draw graph :

 dimSeviyesiAxis.LabelProvider.CustomFormatter = (tickInfo) =>
        {
            return "%" + tickInfo.Tick.ToString();
        };

Which dimSeviyesiAxis is xaml axis name made the axis label starts with "%". Before return you can code any conditional statements. Here is the source link :

http://dynamicdatadisplay.codeplex.com/discussions/462842

于 2014-04-19T14:58:59.073 回答