0
votes
1answer
24 views

Performance of WPF Toolkit Line Chart

I have just created a simple chart using WPF Toolkit that binds to a List<KeyValuePair<int, float>>. There are around 16,000 points in the list. It takes the charting control incredibly ...
1
vote
1answer
63 views

Adding a TextBlock (or label) on the end of a LineSeries DataPoint of a DataVisualizationChart

I'm creating a User Control componente of type DataVisualization.Chart. Right now, he accepts 4 range limits (1 range minimum of accept value and 1 maximum, also 1 range minimum of warning value and 1 ...
0
votes
1answer
57 views

WPF Charting toolkit change axis interval labels programatically

I'd like to programatically change the interval of labels on X axis of my Line chart. The only thing I've found was how to do it in xaml file: http://stackoverflow.com/a/8944925/2302510 and it works ...
1
vote
1answer
61 views

WPF Toolkit Chart Unordered LineSeries

The default LineSeries implementation orders data points by independed value. This gives me strange results for data like this: Is it possible to plot a line series where lines are drawn between ...
1
vote
0answers
167 views

How can I add a horizontal line in WPF Toolkit Chart?

I have the following chart: <DVC:Chart x:Name="userChart" Title="Stats" Grid.Row="1" BorderThickness="0"> <DVC:Chart.Series> <DVC:LineSeries Title="TEST" ...
0
votes
1answer
169 views

WPF: How to show column value for a Chart.ColumnSeries?

I'm using the WPF Toolkit for a .Net 4.0 application written in C#. I have a Chart containing a Column Series bound to a dictionary. The chart works fine but I'd like to show the actual value of each ...
3
votes
1answer
241 views

WPF Toolkit Chart - NullReferenceException after Series.Clear()

The error occurs in a much more complex context, but can be reproduced in this simple example: MainWindow.xaml <Window> <StackPanel> <Button ...
0
votes
1answer
78 views

how to set wpf extended tookit chart line series as a top line series?

is there any way how to bring to the front any of displayed line series in my chart component? I tried Focus(), but this do not work. thanks
0
votes
1answer
282 views

How to add dynamically more line series into a line chart in wpf toolkit?

I'm trying to use wpf toolkit chart line and I need to have more then one line in the chart but i cant figer out how to do that I tried to look in here and Google but I always found an XAML code and ...
0
votes
0answers
21 views

Axis location cannot be changed to auto when hosted inside of a series host

I'm using WPF toolkit charts, I have a TabControl while each TabItem contain a Chart. When the user change the selected tab he gets an exception : Axis location cannot be changed to auto when hosted ...
0
votes
1answer
142 views

Can I chart OHLC or candlesticks with WPF System.Windows.Controls.DataVisualization.Charting?

I need quick and dirty OHLC or candlestick chart in WPF app.. Can I use System.Windows.Controls.DataVisualization.Charting for that? is there a jumpstart example on that?
2
votes
1answer
339 views

Why does data binding my chart series color fail?

I am drawing simple line charts using the WPF toolkit. My goal is to set the line color of my series via Data Binding. This succeeds only partially. The question is: why? Setup Namespaces: ...
2
votes
0answers
88 views

WPFToolkit charts in Itemscontrol

OK here is what I'm trying to do. I need multiple list charts in a single chart control. No problem that's easy enough using Sheog's answer on this post: http://stackoverflow.com/a/10604545/1836291 ...
1
vote
0answers
126 views

Pie Charts custom color

I'm trying to develop a custom control for charting. I'm using the WPF toolkit, but I can't find how it is possible (is it?) to set a specific color for each piece in a pie chart. I don't understand ...
0
votes
1answer
344 views

How to draw an animated chart in WPF

In my WPF application, I need to draw a line chart which draws a line with an animation. The best solution I've found yet, is to use Devexpress tool which provide all what I need and much more but ...
0
votes
1answer
155 views

Error while adding ItemsSource to ColumnSeries in wpf chart

I have couple checkboxes (where content = name from database). In metchod checkbox_checked im trying to add ColumnSeries to wpf Chart, but still getting error: "Object reference not set to an instance ...
1
vote
2answers
490 views

Binding chart LegendItem checkbox to series visibility in WPF

My WPFToolKit chart contains a few series. I've templated the legend itself, and also templated the LegendItem by creating a style resource: <Style x:Key="CustomLegendItemStyle" ...
0
votes
0answers
268 views

Double click event for WPF chart

I want to perform drill down reports using WPF toolkit chart. On click of any chart column I need to populate report for its child. I have tried mouse down/up events, and also tried preview event. ...
0
votes
1answer
234 views

How do I style Silverlight chart marker?

I am using the Silverlight 4 Toolkit chart control (and also the WPF chart control). My goal is to have a marker that is an arbitrary symbol - for example I need a marker style that is an X. It can ...
0
votes
1answer
797 views

How can you set the horizontal axis interval in a WPF Toolkit Chart Control?

I'm using the chart control from the WPF Toolkit. How can I set the interval of the X axis? I have the following XAML code: <Grid Height="800"> <chartingToolkit:Chart ...
0
votes
1answer
167 views

How can I find the mouse click position co-ordinates as per graph in wpf charting tool kit

I working on Charting of Wpf tool kit. I have x-axis as Freuency and Y-axis as Immediate Level. The graph is realtime graph. I need to know the ordinates of a point where user has clicked. Is there ...
0
votes
1answer
446 views

how can i give zooming in wpf charting toolkit?

I need to give the zooming in wpf toolkit chart. I have two options to acheive this one way is via using UserControl which I dont feel is good as it will require a lot of effort. Second, I tried to ...
2
votes
0answers
260 views

Logarithm Chart Is WPF ToolKit Graph

I want to design a wpf toolkit chart which after certain value show only logarithm values in y-axis? i'm using line series for the chart. I want logarithm values after 100 in y axis. Please Help ...
1
vote
1answer
500 views

PieChart with Labels

I want to make LabeledPieCharts in WPF (Source: Bea's Blog ) I have downloaded the DemoProject and it runs. If I want to create a LabeledPieChart it fails with this Error: The Tag ...
1
vote
1answer
3k views

WPF charting toolkit y-axis labels appear as zero for small numbers

I've created a chart using the WPF toolkit (3.5) charting toolkit and I can't get the y-axis labels to display small numbers (e.g. .001). I have set the minimum and maximum values to .001 and .009 ...
3
votes
0answers
690 views

Binding a collection to WPF Toolkit chart

Here are my goals: Using the WPF Toolkit, create a simple column chart with a linear Y-axis and a DateTime range X-axis. Bind a collection of objects to the chart. Each object has a DateTime(X-axis ...
2
votes
1answer
350 views

How to generate random values to plot a barchart in wpf?

i'm using WPF chart controls downloaded from http://wpf.codeplex.com/releases/view/40535 Here i'm trying to plot a barchart and this is my sample code public partial class Window1 : Window { ...
1
vote
1answer
702 views

How to swap axes in WPF Toolkit line chart?

How does one swap the axes in a WPF Toolkit line chart? I have the following xaml: <chartingToolkit:Chart Name="lineChart" Title="Line Series Demo" Margin="0,0,0,0"> ...
0
votes
1answer
599 views

How to change the bar background of column series in DVC:Chart to red?

Hi i'm plotting columnseries graph using chart controls by downloading Microsoft wpftoolkit. I can able to draw the graph using my data but the background color of the bar was not changing.How to ...
0
votes
1answer
152 views

How can the width of a chart in wpf be adjusted?

I am using the chart control from the WPF Toolkit. My question is simple, when my chart is displayed, the column is expanded to the width of the screen. Is there a way to specify a maximum width? ...
1
vote
2answers
2k views

Changing the axes on WPF toolkit charting graph throws an exception

I've a WPF toolkit chart which I want to be able to both specify the axis range and change the data being shown. Either of these work fine independently, but when I put them together I get an ...
0
votes
1answer
2k views

WPF Toolkit Charting: how to remove line series data points and still get different line series colors?

I have used Jim McCurdy's very helpful answer to this StackOverflow question to avoid drawing data points in a WPF Toolkit chart with multiple line series. However: if I do not apply Jim's XAML ...
2
votes
2answers
595 views

Cannot convert the value in attribute 'Property' to object of type 'System.Windows.DependencyProperty'

I have tab control one tab contains DataGrid second ColumnSeries chart when i press when i press charts tab i'm getting such error: Cannot convert the value in attribute 'Property' to object of ...
1
vote
1answer
2k views

Labels on Chart Toolkit WPF

Is there any way to label the axis on charts? <charting:Chart Name="EventAlertsChart" BorderThickness="0" Margin="0,10,0,0"> <charting:Chart.Axes> ...
1
vote
2answers
1k views

WPF Toolkit Charts don't show if I change the ControlTemplate of a DataPoint in .NET 4

I am experiencing a very weird problem with the WPF Toolkit Charts in a .NET 4 environment. Basically, I just want to customize the ToolTip template for ColumnDataPoints. To accomplish that, I copied ...
0
votes
1answer
742 views

Change label rendering in CategoryAxis

I have a chart with ColumnSeries and I am trying to make the labels on X axis display near the ticks like this: By default, the ColumnSeries uses CategoryAxis axis which places labels in the middle ...
0
votes
1answer
1k views

WPF toolkit charting Lineseries styling

Is it possible to change the thickness of the LineSeries? Is it possible to show LineSeries as dashed lines? I have othe question about AreaSeries, no matter what all my Area Series are drawing from ...
0
votes
1answer
229 views

Graph works on first tabitem but not second tabitem?

I am using Wpf Toolkit for the graph, and I realise that it doesn't work when I place it as the second tabitem. What could be the problem? This is my graph: <TabControl> <TabItem ...
0
votes
1answer
375 views

How to update Line series Chart with data consistently?

I have a simple line series chart using WPFToolKit. I would like to have new data coming in to be updated on the chart every 5 minutes. But I have no idea how to go about it. The way I am showing data ...
1
vote
0answers
299 views

WPF Toolkit: display a label above each line in LineSeries Chart

I'm trying to display a label on a lineseries in a WPFToolkit chart. The result I'm looking for would be something like this: LineSeries with labels Is there a way to easily do this?
1
vote
1answer
2k views

Cannot modify the logical children for this node at this time because a tree walk is in progress

I have two wpf tool kit charts one is pie chart and second bar series i have method which i call only on form load chartGuest.DataContext = null; List<KeyValuePair<string, ...
2
votes
2answers
312 views

Get “is ready” signal after rendering of WPF toolkit chart

I am using the charting stuff of the WPF toolkit. After creating a chart I like to have a snaphshot of that chart, without visualizing that chart. My problem is that I don't know when the rendering ...
1
vote
1answer
833 views

How do you format in code AxisLabel for DependentRangeAxis?

I cannot get the axis to format as currency, any idea? What am I doing wrong? I need to be able to change the formatting on the fly and for this test I wanted to set it as currency for the Y axis on ...
0
votes
1answer
196 views

How to get WPF Charting controls?

I need to make some graphs in my WPF 4 application and tried to download the WPF Toolkit which includes charting controls. But the installation failed because the WPF Toolkit seems to be unsupported ...
1
vote
2answers
838 views

How to get smooth lines in a WPF Toolkit Chart LineSeries?

I'm creating a chart using WPF toolkit. The chart has some lineseries in it. I want to modify the lineseries so that I have smooth lines instead of straight lines. Is that even possible? I've been ...
0
votes
1answer
853 views

Binding Dictionary to WPF toolkit Chart

Here is my code for binding a dictionary item to a Chart control. I keep getting the following error: "Index was out of range. Must be non-negative and less than the size of the collection. Parameter ...
5
votes
1answer
4k views

wpf toolkit line chart without points and with different line colors

I have some chart and I want to add dynamicly LineSeries without DataPoints, just lines with some custom colors. The only way I found to hide data points is: Style style = new ...
1
vote
2answers
4k views

wpf toolkit chart LineSeries DataPointStyle

I want to add LineSeries without points just lines. I want to do this dynamically from code not xaml. I tried to do this with following code: Style style = new Style(typeof(LineDataPoint)); ...
1
vote
0answers
314 views

Binding graph to DataGrid in WPF

I have displayed a DataGrid in my WPF project window, I also want a graph below it which takes the values from rows and columns and plots it. I have been trying to do alot of things like binding ...
1
vote
1answer
1k views

Plot Two Line Series on One Graph

I am trying to plot two lines series on a chart. Each line with have different times for their data points. Unfortunately, the code below produces a weird result (probably because the there is not a ...

1 2