Visiblox is a company that develops a WPF Chart component. It's available at www.visiblox.com.

learn more… | top users | synonyms

0
votes
1answer
18 views

Visiblox - Scale axis title to fit available space

My Visiblox charts shrink to fit the available space, and sometimes the axis title gets shrunk so much it gets cut off. So I figured I would just create a new ControlTemplate for the LinearAxis, ...
0
votes
0answers
15 views

live data plot using Visiblox v2.1 with WPF

I have a live data stream that i need to plot using Visiblox V2.1 WPF. I have N number of series to plot so I am using AutoSeriesGenerator to plot all the series. ...
0
votes
1answer
63 views

Rendering Visiblox Chart for reporting on service without graphical UI throws NullReferenceException

I have a very simple Visiblox chart that works fine: <charts:Chart Grid.Row="1" Height="100" x:Name="VisiChart"> <charts:Chart.Series> <charts:LineSeries/> ...
0
votes
1answer
183 views

How to use AutoSeriesGenerator with MVVM Visiblox

I am following the example at this tutorial: But unfortunately their documentation is so vague I can't get anything working properly. ...
1
vote
1answer
81 views

Visiblox Charting: Ruler Behavior for calculating delta values

Has anybody experience of working on RulerBehavior of Visiblox charting toolkit? I am looking for some delta finding examples. Visiblox forum does not contain any such information. So if anyone can ...
2
votes
1answer
96 views

Plotting StackedColumnGraph of visiblox in WP7 dynamically

I am facing a problem in binding the values to the StackedColumnGraph of visiblox in WP7 dynamically. the XAML code has hard coded values.. <UserControl.Resources> <Style ...
0
votes
1answer
502 views

RenderTargetBitmap renders empty control if not set in a Window (Visiblox chart)

I'm trying to render a Visiblox chart to an image to be able to show hundreds of them at the same time. The chart is generated in code and rendered without showing it. The problem I'm facing is that ...
0
votes
1answer
135 views

Graphing tools for Windows phone- Visiblox Error

I have been trying to use 3rd party tool called visiblox for rendering charts in my app. http://www.visiblox.com/examples The Visiblox docs says, we need to add the toolkit dll and visiblox dll. I ...
0
votes
1answer
340 views

Interactive legend in Visiblox chart

I have a Visiblox chart showing several LineSeries. I would like to be able to show/hide these individually, preferably by clicking on the corresponding LegendItem or inserting a checkbox in the ...
0
votes
1answer
225 views

Visiblox/WPF can't zoom with series on additional Y axis

I have a Visiblox chart with multiple Y-axes, different units on each axis. The user can click any of several buttons to display data as line series on the appropriate axis. If the user clicks on ...
0
votes
1answer
168 views

Visiblox invalid assembly reference

I am struggling with a problem regarding to visiblox. I am quite new to the WPF concept, but I am getting the hang of it. I have quite some expirence with the classic forms. My problem is that the ...
0
votes
1answer
290 views

Disable auto scale for Visiblox chart

I have a dynamic chart where you cna change the chart in real time by dragging dots on the line, but since Visiblox have some kind of auto scale/zoom its quite unusable. I've tried ...
4
votes
3answers
354 views

Saving an image of a UIElement rendered larger than it appears on screen

I have a chart that I'm displaying to the user and I want to be able to export the chart as an image to disk so they can use it outside of the application (for a presentation or something). I've ...
1
vote
1answer
572 views

How to programmatically create rectangle and textblock with binding element with c#?

I have the following code, which i want to programmatically create. Where the i is must be an integer into xaml! This is a sample Code from VISIBLOX. <Rectangle Margin="20,0,0,5" Height="10" ...
2
votes
1answer
1k views

Autoscaling axis after pan or zoom in Visiblox chart

I have a Visiblox line chart that allows zooming and panning on the XAxis (but not the YAxis). After zooming or panning to a particular region of the chart, I would like to have the YAxis range and ...
3
votes
1answer
653 views

Wrap legend text in Visiblox chart

When I explicitly set the width of the legend in a Visiblox chart I find that legend item text gets cut off instead of wrapping. For example, <Style x:Key="LegendStyle" TargetType="{x:Type ...
5
votes
2answers
607 views

Force axis to use given number of major tick marks in Visiblox chart

When using a LinearAxis for the Y axis in a Visiblox chart, I would like to force the axis to use a given number of major tick marks while still having the toolkit automatically calculate the axis ...
6
votes
1answer
381 views

Invert linear axis in Visiblox chart

Is it possible to invert a LinearAxis in a Visiblox chart? For example, if a linear axis is being used as the Y axis and the minimum and maximum axis values are 1 and 10, then I would want the axis to ...
5
votes
1answer
726 views

Visiblox, WPF: Display labeled markers in a chart

is there a way to add some markers, like points or vertical lines with text labels to a visiblox chart? Cheers, Lutz
13
votes
3answers
801 views

VISIBLOX, WPF: Getting chart points to scroll horizontally?

I'm using the Visiblox WPF API and am having trouble getting the chart points in my line chart to scroll horizontally. Instead of scrolling, the points are get squashed together, in which, this isn't ...
8
votes
2answers
3k views

DispatcherTimer and UI refresh limits in C# silverlight

Again I apologize for a question that might be simple to all of you. I have a limited understanding of what goes behind the scenes in Silverlight. I have a charting app (Visiblox) that I use as a ...