<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Forums - PlotLab]]></title>
		<link>http://mitov.com/forum/</link>
		<description><![CDATA[Forums - http://mitov.com/forum]]></description>
		<pubDate>Sat, 16 May 2026 19:15:47 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Legend channels bottom orientation?]]></title>
			<link>http://mitov.com/forum/thread-3068.html</link>
			<pubDate>Tue, 24 Jun 2014 06:04:42 -0400</pubDate>
			<guid isPermaLink="false">http://mitov.com/forum/thread-3068.html</guid>
			<description><![CDATA[Hellow.<br />
<br />
I have the name of the channel as "temperature in the engine room fire pumping station (351)"<br />
<br />
It takes a lot of space on the chart. Is it possible to place the bottom of the channel name?]]></description>
			<content:encoded><![CDATA[Hellow.<br />
<br />
I have the name of the channel as "temperature in the engine room fire pumping station (351)"<br />
<br />
It takes a lot of space on the chart. Is it possible to place the bottom of the channel name?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Fixed cursors when scrolling of a chart?]]></title>
			<link>http://mitov.com/forum/thread-3067.html</link>
			<pubDate>Tue, 24 Jun 2014 05:47:51 -0400</pubDate>
			<guid isPermaLink="false">http://mitov.com/forum/thread-3067.html</guid>
			<description><![CDATA[Hello<br />
Is it possible to implement fixed cursors when scrolling of a chart?]]></description>
			<content:encoded><![CDATA[Hello<br />
Is it possible to implement fixed cursors when scrolling of a chart?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[DateTime axisX in seconds]]></title>
			<link>http://mitov.com/forum/thread-3066.html</link>
			<pubDate>Tue, 24 Jun 2014 00:41:06 -0400</pubDate>
			<guid isPermaLink="false">http://mitov.com/forum/thread-3066.html</guid>
			<description><![CDATA[Hello.<br />
How to configure MajorTicks and other parameters to be displayed on the axisX DateTime range in seconds? In the example DateDisplayScopeDemo minimum time display can be set as _mDate.AddHours (1). If you set m_Date.AddSeconds (1), the labels axisX not displayed.]]></description>
			<content:encoded><![CDATA[Hello.<br />
How to configure MajorTicks and other parameters to be displayed on the axisX DateTime range in seconds? In the example DateDisplayScopeDemo minimum time display can be set as _mDate.AddHours (1). If you set m_Date.AddSeconds (1), the labels axisX not displayed.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[scope1_MouseDown always returns mouse button none??]]></title>
			<link>http://mitov.com/forum/thread-3017.html</link>
			<pubDate>Mon, 30 Sep 2013 04:42:48 -0400</pubDate>
			<guid isPermaLink="false">http://mitov.com/forum/thread-3017.html</guid>
			<description><![CDATA[Hello the scope1_MouseDown seems broken partially due it enters event and the mouse button is always equal none I try the left en right mouse button to be catched.<br />
<br />
Can this behaviour being reproduced?]]></description>
			<content:encoded><![CDATA[Hello the scope1_MouseDown seems broken partially due it enters event and the mouse button is always equal none I try the left en right mouse button to be catched.<br />
<br />
Can this behaviour being reproduced?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Reduce number of ploted data points possible?]]></title>
			<link>http://mitov.com/forum/thread-3013.html</link>
			<pubDate>Tue, 24 Sep 2013 08:27:28 -0400</pubDate>
			<guid isPermaLink="false">http://mitov.com/forum/thread-3013.html</guid>
			<description><![CDATA[Hello<br />
<br />
Is it possible to Reduce the number of printed plotted data points?<br />
<br />
Lets say I use an over sized array of double but only the first data elements are valid to be plotted, the number of valid data elements is know, next i could dynamic re size the array or initialize al remaining elements by the value of the last valid data element but is there an other way to the channel data partially in case an over sized array of double is used.<br />
I did try by initialize the array of double by double.NAN hopefull the plot engine will skip plotting when double.NAN value is used but it doesn't.<br />
<br />
Regards]]></description>
			<content:encoded><![CDATA[Hello<br />
<br />
Is it possible to Reduce the number of printed plotted data points?<br />
<br />
Lets say I use an over sized array of double but only the first data elements are valid to be plotted, the number of valid data elements is know, next i could dynamic re size the array or initialize al remaining elements by the value of the last valid data element but is there an other way to the channel data partially in case an over sized array of double is used.<br />
I did try by initialize the array of double by double.NAN hopefull the plot engine will skip plotting when double.NAN value is used but it doesn't.<br />
<br />
Regards]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Create AdditionalAxes Based On YAxis]]></title>
			<link>http://mitov.com/forum/thread-3012.html</link>
			<pubDate>Mon, 23 Sep 2013 10:37:49 -0400</pubDate>
			<guid isPermaLink="false">http://mitov.com/forum/thread-3012.html</guid>
			<description><![CDATA[Hello is it possible to create an YAxis.AdditionalAxes based on the base scope1.YAxis. Next change the properties of the newly created YAxis.AdditionalAxes get by index 0 something like this below?<br />
<br />
<br />
1. Mitov.PlotLab.ScopeYAxis data= new Mitov.PlotLab.ScopeYAxis();<br />
2. scope1.YAxis.AdditionalAxes.Add(1);<br />
3. scope1.YAxis.AdditionalAxes.Insert(0, scope1.YAxis);<br />
4. Next get YAxis.AdditionalAxes by index and change some<br />
    properties<br />
<br />
Thanks in advance]]></description>
			<content:encoded><![CDATA[Hello is it possible to create an YAxis.AdditionalAxes based on the base scope1.YAxis. Next change the properties of the newly created YAxis.AdditionalAxes get by index 0 something like this below?<br />
<br />
<br />
1. Mitov.PlotLab.ScopeYAxis data= new Mitov.PlotLab.ScopeYAxis();<br />
2. scope1.YAxis.AdditionalAxes.Add(1);<br />
3. scope1.YAxis.AdditionalAxes.Insert(0, scope1.YAxis);<br />
4. Next get YAxis.AdditionalAxes by index and change some<br />
    properties<br />
<br />
Thanks in advance]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Using Font.Style.FromInt(0) for scope title]]></title>
			<link>http://mitov.com/forum/thread-3010.html</link>
			<pubDate>Fri, 20 Sep 2013 06:05:59 -0400</pubDate>
			<guid isPermaLink="false">http://mitov.com/forum/thread-3010.html</guid>
			<description><![CDATA[I would like to configure Font.Style to be bold how can I do this<br />
I try to use Font.Style.FromInt(1) but all four item bold etc... stay false<br />
<br />
How can I configure a Font.Style ? to my needs, any help or a manual explain this function argument, I did try wiki already no help reference found<br />
<br />
Thanks in advance]]></description>
			<content:encoded><![CDATA[I would like to configure Font.Style to be bold how can I do this<br />
I try to use Font.Style.FromInt(1) but all four item bold etc... stay false<br />
<br />
How can I configure a Font.Style ? to my needs, any help or a manual explain this function argument, I did try wiki already no help reference found<br />
<br />
Thanks in advance]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Plotlab 5.0.2 Waterfall Zoom issue]]></title>
			<link>http://mitov.com/forum/thread-598.html</link>
			<pubDate>Fri, 31 Aug 2012 02:44:52 -0400</pubDate>
			<guid isPermaLink="false">http://mitov.com/forum/thread-598.html</guid>
			<description><![CDATA[Greetings together!<br />
<br />
In the newest Plotlab release for .NET I have a problem with the zooming<br />
function in the waterfall control.<br />
<br />
It just does nothing when I try to select a area it should zoom into.<br />
<br />
This also appears on different machines and after a clean install (of both the machine itself and Plotlab).<br />
<br />
So my questions:<br />
<br />
Is this a known bug / Are there people working on it / Can a Update be expected?<br />
<br />
And if not: Is there a workaround?<br />
<br />
Best regards<br />
<br />
NKoll]]></description>
			<content:encoded><![CDATA[Greetings together!<br />
<br />
In the newest Plotlab release for .NET I have a problem with the zooming<br />
function in the waterfall control.<br />
<br />
It just does nothing when I try to select a area it should zoom into.<br />
<br />
This also appears on different machines and after a clean install (of both the machine itself and Plotlab).<br />
<br />
So my questions:<br />
<br />
Is this a known bug / Are there people working on it / Can a Update be expected?<br />
<br />
And if not: Is there a workaround?<br />
<br />
Best regards<br />
<br />
NKoll]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[PlotLab .Net installation issues]]></title>
			<link>http://mitov.com/forum/thread-435.html</link>
			<pubDate>Tue, 31 Jul 2012 10:53:03 -0400</pubDate>
			<guid isPermaLink="false">http://mitov.com/forum/thread-435.html</guid>
			<description><![CDATA[Is it possible to install PlotLab 5.0.2 .Net 2-4 together with  PlotLab C++ MFC 4.5. on the same PC.]]></description>
			<content:encoded><![CDATA[Is it possible to install PlotLab 5.0.2 .Net 2-4 together with  PlotLab C++ MFC 4.5. on the same PC.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[scalling in PlotLab.Scope]]></title>
			<link>http://mitov.com/forum/thread-434.html</link>
			<pubDate>Tue, 31 Jul 2012 07:34:08 -0400</pubDate>
			<guid isPermaLink="false">http://mitov.com/forum/thread-434.html</guid>
			<description><![CDATA[Hi,<br />
I have a simlpe windows form project  in C# that it has only one PlotLab.Scope. when i run and zoom in, all the screen change. I don't want this. I need MajorTicks in both of Axis(YAxis &amp; XAxis) get fixed. when i zoom in data should be scaled, also step for ticks change but ticks dont't change.<br />
<br />
can anybody help me, please?]]></description>
			<content:encoded><![CDATA[Hi,<br />
I have a simlpe windows form project  in C# that it has only one PlotLab.Scope. when i run and zoom in, all the screen change. I don't want this. I need MajorTicks in both of Axis(YAxis &amp; XAxis) get fixed. when i zoom in data should be scaled, also step for ticks change but ticks dont't change.<br />
<br />
can anybody help me, please?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Scrolling]]></title>
			<link>http://mitov.com/forum/thread-97.html</link>
			<pubDate>Mon, 16 Jan 2012 03:55:35 -0500</pubDate>
			<guid isPermaLink="false">http://mitov.com/forum/thread-97.html</guid>
			<description><![CDATA[How can I make the x-axis scroll? My data is time-based, and I want the x-axis to automatically scroll (not auto-scale) with ie. 0.1 second steps]]></description>
			<content:encoded><![CDATA[How can I make the x-axis scroll? My data is time-based, and I want the x-axis to automatically scroll (not auto-scale) with ie. 0.1 second steps]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Plotting application - Solution crashes in VS2010]]></title>
			<link>http://mitov.com/forum/thread-81.html</link>
			<pubDate>Wed, 21 Dec 2011 06:45:03 -0500</pubDate>
			<guid isPermaLink="false">http://mitov.com/forum/thread-81.html</guid>
			<description><![CDATA[Hello,<br />
<br />
I just started getting familiar with the library and I have developed a sample application that receives a analog data stream via a TCP threaded server and attempts to plot the spectrum of the received data.<br />
<br />
My data stream of Int16 values is in a List and I add data to an IntegerBuffer.<br />
<br />
In turn the IntegerBuffer sends the data to a GenericInt using :<br />
genericInt1.SendStartCommand(500000); // 500 KHz sampling rate<br />
genericInt1.SendData(mybuf);<br />
<br />
Next step, the GenericInt output pin is connected to a Int2Real component which in turn is connected to the FFT component. Finally the spectrum output pin of the FFT is connected to a scope with 1 channel defined.<br />
<br />
On the FormClosing() function, I have also added the command :<br />
genericInt1.SendStopCommand();<br />
<br />
Everything seems to be working OK at start BUT, after debugging my code 3-4 times, the Visual Studio 2010 IDE crashes and I cannot reopen the solution,at least the Design view of the form. Furthermore Once the crash occurs, I cannot execute the application not even from the Release folder as it halts as soon as I execute.<br />
<br />
I have attempted to remove the Scope control from the Form while keeping everything else and the application seems to behave properly.<br />
<br />
I would really appreciate it if you have any indication as to why this could be happening as I would to further familiarize myself with your libraries.]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
I just started getting familiar with the library and I have developed a sample application that receives a analog data stream via a TCP threaded server and attempts to plot the spectrum of the received data.<br />
<br />
My data stream of Int16 values is in a List and I add data to an IntegerBuffer.<br />
<br />
In turn the IntegerBuffer sends the data to a GenericInt using :<br />
genericInt1.SendStartCommand(500000); // 500 KHz sampling rate<br />
genericInt1.SendData(mybuf);<br />
<br />
Next step, the GenericInt output pin is connected to a Int2Real component which in turn is connected to the FFT component. Finally the spectrum output pin of the FFT is connected to a scope with 1 channel defined.<br />
<br />
On the FormClosing() function, I have also added the command :<br />
genericInt1.SendStopCommand();<br />
<br />
Everything seems to be working OK at start BUT, after debugging my code 3-4 times, the Visual Studio 2010 IDE crashes and I cannot reopen the solution,at least the Design view of the form. Furthermore Once the crash occurs, I cannot execute the application not even from the Release folder as it halts as soon as I execute.<br />
<br />
I have attempted to remove the Scope control from the Form while keeping everything else and the application seems to behave properly.<br />
<br />
I would really appreciate it if you have any indication as to why this could be happening as I would to further familiarize myself with your libraries.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Waterfall axis issues]]></title>
			<link>http://mitov.com/forum/thread-52.html</link>
			<pubDate>Fri, 02 Dec 2011 18:41:28 -0500</pubDate>
			<guid isPermaLink="false">http://mitov.com/forum/thread-52.html</guid>
			<description><![CDATA[First I want to thank you for your excellent programs and I have<br />
had a lot of fun with them.<br />
<br />
I am trying out the new version 5.0.1.0 and have found a couple<br />
of problems with the waterfall component in Visual Studio 2008<br />
using VB.<br />
<br />
1. I am trying to set custom axis scales.  The modes are not clear<br />
since the time and frequency choices need a scaling factor from<br />
array index to be meaningful so I was using auto for MajorTicksMode.<br />
The only way it will accept a YaxisMax value is using a a <br />
Mitov.MaxAxisValue assignment.  For YAxisMin it will accept a<br />
Mitov.Plotlab.AxisValue assignment.  However, the YAxisMax<br />
assignment has no effect on the displayed scale. It is always<br />
1000.  If I look at Waterfall1.YAxis.CurrentMax, it gives the<br />
correct value (if not zoomed).  Using the same form on the xaxis<br />
sets the value correctly.<br />
<br />
2. The minimum value of the MajorTicks step is 1 when you zoom<br />
in. Further zooms leave you with a blank axis.  This appears to<br />
be true for the xaxis as well.<br />
<br />
3.  I wrote you a year or so ago about a problem with the waterfall<br />
xaxis and it still has much of the problem. It acts like one of the<br />
internal variables is an integer.  Any span less than 1 blows up<br />
the display. If you zoom and try to pan, it just zooms back out<br />
or the whole scale disappears depending on the values.<br />
<br />
I have a small demo project that shows this effect if that would<br />
be useful.<br />
<br />
Thanks again.]]></description>
			<content:encoded><![CDATA[First I want to thank you for your excellent programs and I have<br />
had a lot of fun with them.<br />
<br />
I am trying out the new version 5.0.1.0 and have found a couple<br />
of problems with the waterfall component in Visual Studio 2008<br />
using VB.<br />
<br />
1. I am trying to set custom axis scales.  The modes are not clear<br />
since the time and frequency choices need a scaling factor from<br />
array index to be meaningful so I was using auto for MajorTicksMode.<br />
The only way it will accept a YaxisMax value is using a a <br />
Mitov.MaxAxisValue assignment.  For YAxisMin it will accept a<br />
Mitov.Plotlab.AxisValue assignment.  However, the YAxisMax<br />
assignment has no effect on the displayed scale. It is always<br />
1000.  If I look at Waterfall1.YAxis.CurrentMax, it gives the<br />
correct value (if not zoomed).  Using the same form on the xaxis<br />
sets the value correctly.<br />
<br />
2. The minimum value of the MajorTicks step is 1 when you zoom<br />
in. Further zooms leave you with a blank axis.  This appears to<br />
be true for the xaxis as well.<br />
<br />
3.  I wrote you a year or so ago about a problem with the waterfall<br />
xaxis and it still has much of the problem. It acts like one of the<br />
internal variables is an integer.  Any span less than 1 blows up<br />
the display. If you zoom and try to pan, it just zooms back out<br />
or the whole scale disappears depending on the values.<br />
<br />
I have a small demo project that shows this effect if that would<br />
be useful.<br />
<br />
Thanks again.]]></content:encoded>
		</item>
	</channel>
</rss>