Click here to Skip to main content
15,892,737 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
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()
        {
         
        }
    }
}
Posted

1 solution

In my project I got the same error.

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

Maybe that's fake errors...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900