XML名称空间“http://research.microsoft.com/DynamicDataDisplay/1.0”中不存在“ChartPlotter”标记 [英] The tag 'ChartPlotter' does not exist in XML namespace 'http://research.microsoft.com/DynamicDataDisplay/1.0'

查看:161
本文介绍了XML名称空间“http://research.microsoft.com/DynamicDataDisplay/1.0”中不存在“ChartPlotter”标记的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要绘制一个图表,但我总是最终得到错误:



XML名称空间'http中不存在'ChartPlotter'标签://research.microsoft.com/DynamicDataDisplay/1.0'





XAML部分现在最简单:



< Window x:Class =interface1。 Visual
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 =VisualWindowHeight =300Width =300>


< Grid>

< d3:ChartPlotter BottomTitle =ArgumentLeftTitle =Function>
< d3:LineGraph x:Name =linegraphDescription =Simple linegraphStroke =BlueStrokeThickness =3/>
< / d3:ChartPlotter>

< / Grid>
< / Window>







背后的代码:



使用System; 
使用System.Collections.Generic;
使用System.Linq;
使用System.Text;使用System.Windows
;使用System.Windows.Controls
;
使用System.Windows.Data;
使用System.Windows.Documents;
使用System.Windows.Input;
使用System.Windows.Media;
使用System.Windows.Media.Imaging;
使用System.Windows.Shapes;使用System.Collections.Generic

;
使用System.IO;
使用Microsoft.Research.DynamicDataDisplay; //使用Microsoft.Research.DynamicDataDisplay.DataSources的核心功能
; //使用Microsoft.Research.DynamicDataDisplay.PointMarkers的EnumerableDataSource
; // CirclePointMarker




namespace interface1
{
///< summary>
/// Visualisation的交互逻辑.xam
///< / summary>
公共部分类可视化:窗口
{
公共可视化()
{

}
}
}

解决方案

在我的项目中我遇到了同样的错误。



但我刚开始这个项目并且运作顺畅...



也许这是假的错误。 ..

I need to plot a graph but i always end up with the error :

The tag 'ChartPlotter' does not exist in XML namespace 'http://research.microsoft.com/DynamicDataDisplay/1.0'


The XAML part is cut to the simplest for now :

<Window x:Class="interface1.Visual"
    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="VisualWindow" Height="300" Width="300">
 

    <Grid>

        <d3:ChartPlotter BottomTitle="Argument" LeftTitle="Function">
            <d3:LineGraph x:Name="linegraph" Description="Simple linegraph" Stroke="Blue" StrokeThickness="3"/>
        </d3:ChartPlotter>

    </Grid>
</Window>




The code behind :

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;

using System.Collections.Generic;
using System.IO;
using Microsoft.Research.DynamicDataDisplay; // Core functionality
using Microsoft.Research.DynamicDataDisplay.DataSources; // EnumerableDataSource
using Microsoft.Research.DynamicDataDisplay.PointMarkers; // CirclePointMarker




namespace interface1
{
    /// <summary>
    /// Interaction logic for Visualisation.xaml
    /// </summary>
    public partial class visualisation : Window
    {
        public visualisation()
        {
         
        }
    }
}

解决方案

In my project I got the same error.

But I just start the project and it works smoothly...

Maybe that's fake errors...


这篇关于XML名称空间“http://research.microsoft.com/DynamicDataDisplay/1.0”中不存在“ChartPlotter”标记的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆