<?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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: JFreeChart graphs and gauges	</title>
	<atom:link href="https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges/feed" rel="self" type="application/rss+xml" />
	<link>https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jfreechart-graphs-and-gauges</link>
	<description>Professional Matlab consulting, development and training</description>
	<lastBuildDate>Sat, 22 Jul 2017 16:25:11 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>
	<item>
		<title>
		By: Cristian Jecu		</title>
		<link>https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-410684</link>

		<dc:creator><![CDATA[Cristian Jecu]]></dc:creator>
		<pubDate>Sat, 22 Jul 2017 16:25:11 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2053#comment-410684</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-410577&quot;&gt;Cristian Jecu&lt;/a&gt;.

Yair,
 Thank you for your fast and correct reply. This really motivated me to learn more about java objects and their integration with Matlab. Now I have a beautiful GUI with what I wasn&#039;t able to obtain from Matalb. 

Thank you so much again for sharing and for your answer. I am sure that time will prove that I&#039;ll be visiting your sites for other tricks.

Best regards]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-410577">Cristian Jecu</a>.</p>
<p>Yair,<br />
 Thank you for your fast and correct reply. This really motivated me to learn more about java objects and their integration with Matlab. Now I have a beautiful GUI with what I wasn&#8217;t able to obtain from Matalb. </p>
<p>Thank you so much again for sharing and for your answer. I am sure that time will prove that I&#8217;ll be visiting your sites for other tricks.</p>
<p>Best regards</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Yair Altman		</title>
		<link>https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-410588</link>

		<dc:creator><![CDATA[Yair Altman]]></dc:creator>
		<pubDate>Fri, 21 Jul 2017 05:23:11 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2053#comment-410588</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-410577&quot;&gt;Cristian Jecu&lt;/a&gt;.

@Christian - you cannot place controls in axes, but you can place them inside panels and uitabs, not just figures.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-410577">Cristian Jecu</a>.</p>
<p>@Christian &#8211; you cannot place controls in axes, but you can place them inside panels and uitabs, not just figures.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Cristian Jecu		</title>
		<link>https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-410577</link>

		<dc:creator><![CDATA[Cristian Jecu]]></dc:creator>
		<pubDate>Thu, 20 Jul 2017 21:04:37 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2053#comment-410577</guid>

					<description><![CDATA[Hello, 
Very useful, thank you for sharing. I am using the gauges but only in individual figures within a more complex GUI. I made a workaround to update values that are obtained from varargin of the GUI function (from a Simulink model), not the best optimized one, but got the job done.

What I would really like to obtain is to have several gauges in the main GUI figure (separate tabs). Unfortunately I wasn&#039;t able to upload this to existing GUI axes as the jcontrol command will create new children on the specified target that &quot;must&quot;(?) be a figure.
&lt;pre lang=&quot;matlab&quot;&gt;
% New figure
fh = figure(&#039;Units&#039;,&#039;normalized&#039;,&#039;position&#039;,[0.1,0.1,  0.2,  0.4]);

% ChartPanel with JControl
jp = jcontrol(fh, cp1,&#039;Position&#039;,[0.01 0.07 0.98 0.88]);
 &lt;/pre&gt;
Is it incompatible with axes and works only with figures or am I missing something ?

Thank you in advance for your time]]></description>
			<content:encoded><![CDATA[<p>Hello,<br />
Very useful, thank you for sharing. I am using the gauges but only in individual figures within a more complex GUI. I made a workaround to update values that are obtained from varargin of the GUI function (from a Simulink model), not the best optimized one, but got the job done.</p>
<p>What I would really like to obtain is to have several gauges in the main GUI figure (separate tabs). Unfortunately I wasn&#8217;t able to upload this to existing GUI axes as the jcontrol command will create new children on the specified target that &#8220;must&#8221;(?) be a figure.</p>
<pre lang="matlab">
% New figure
fh = figure('Units','normalized','position',[0.1,0.1,  0.2,  0.4]);

% ChartPanel with JControl
jp = jcontrol(fh, cp1,'Position',[0.01 0.07 0.98 0.88]);
 </pre>
<p>Is it incompatible with axes and works only with figures or am I missing something ?</p>
<p>Thank you in advance for your time</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Leo		</title>
		<link>https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-391057</link>

		<dc:creator><![CDATA[Leo]]></dc:creator>
		<pubDate>Wed, 19 Oct 2016 15:52:49 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2053#comment-391057</guid>

					<description><![CDATA[Hi, Yair
I have a question, its possible add multiple subtask in gantt chart?]]></description>
			<content:encoded><![CDATA[<p>Hi, Yair<br />
I have a question, its possible add multiple subtask in gantt chart?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ivan		</title>
		<link>https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-378073</link>

		<dc:creator><![CDATA[Ivan]]></dc:creator>
		<pubDate>Thu, 26 May 2016 18:58:58 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2053#comment-378073</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-377767&quot;&gt;Yair Altman&lt;/a&gt;.

Of course you are right I&#039;m sorry; I&#039;m just doing it for my personal curiosity so it&#039;s not necessary to disturb you anymore, however thank you a lot and congratulations for your blog and your books!!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-377767">Yair Altman</a>.</p>
<p>Of course you are right I&#8217;m sorry; I&#8217;m just doing it for my personal curiosity so it&#8217;s not necessary to disturb you anymore, however thank you a lot and congratulations for your blog and your books!!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Yair Altman		</title>
		<link>https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-377767</link>

		<dc:creator><![CDATA[Yair Altman]]></dc:creator>
		<pubDate>Tue, 24 May 2016 07:32:07 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2053#comment-377767</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-377702&quot;&gt;Ivan&lt;/a&gt;.

@Ivan - read my reply above. I am not a free public service.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-377702">Ivan</a>.</p>
<p>@Ivan &#8211; read my reply above. I am not a free public service.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ivan		</title>
		<link>https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-377702</link>

		<dc:creator><![CDATA[Ivan]]></dc:creator>
		<pubDate>Mon, 23 May 2016 17:17:14 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2053#comment-377702</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-376686&quot;&gt;Ivan&lt;/a&gt;.

Thank you for the availability!! Now I have a new problem, Matlab gives me the error:
&#039;&#039;The CLASS function must be called from a class constructor.&#039;&#039;
And after days of research I didn&#039;t find what does it mean, can you help me??]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-376686">Ivan</a>.</p>
<p>Thank you for the availability!! Now I have a new problem, Matlab gives me the error:<br />
&#8221;The CLASS function must be called from a class constructor.&#8221;<br />
And after days of research I didn&#8217;t find what does it mean, can you help me??</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Yair Altman		</title>
		<link>https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-376753</link>

		<dc:creator><![CDATA[Yair Altman]]></dc:creator>
		<pubDate>Sat, 14 May 2016 18:10:01 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2053#comment-376753</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-376686&quot;&gt;Ivan&lt;/a&gt;.

@Ivan - you probably forgot the &lt;i&gt;&lt;b&gt;javaaddpath&lt;/b&gt;&lt;/i&gt; step (read the main article above for details). 
If you need dedicated assistance for your specific project, email me for a consulting request.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-376686">Ivan</a>.</p>
<p>@Ivan &#8211; you probably forgot the <i><b>javaaddpath</b></i> step (read the main article above for details).<br />
If you need dedicated assistance for your specific project, email me for a consulting request.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ivan		</title>
		<link>https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-376686</link>

		<dc:creator><![CDATA[Ivan]]></dc:creator>
		<pubDate>Fri, 13 May 2016 21:17:51 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2053#comment-376686</guid>

					<description><![CDATA[Hello,thank you it is fantastic! I&#039;m trying to use the dialdemo4 in MATLAB, but I don&#039;t understand why it gives me the error: &#039;Undefined function or variable &#039;DefaultValueDataset&#039;. or the same thing with Dialplot fo example, but I downloaded all of these and I have in my current folder, I&#039;m new with java so I really don&#039;t know how to solve this problem also if probably it is something easy. Thank you!!]]></description>
			<content:encoded><![CDATA[<p>Hello,thank you it is fantastic! I&#8217;m trying to use the dialdemo4 in MATLAB, but I don&#8217;t understand why it gives me the error: &#8216;Undefined function or variable &#8216;DefaultValueDataset&#8217;. or the same thing with Dialplot fo example, but I downloaded all of these and I have in my current folder, I&#8217;m new with java so I really don&#8217;t know how to solve this problem also if probably it is something easy. Thank you!!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Anilkumar Jangir		</title>
		<link>https://undocumentedmatlab.com/articles/jfreechart-graphs-and-gauges#comment-361780</link>

		<dc:creator><![CDATA[Anilkumar Jangir]]></dc:creator>
		<pubDate>Tue, 17 Nov 2015 07:50:17 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2053#comment-361780</guid>

					<description><![CDATA[Hi,
Can you please provide few sample code for gauge chart.]]></description>
			<content:encoded><![CDATA[<p>Hi,<br />
Can you please provide few sample code for gauge chart.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
