<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SoftwareGFX Library Blog</title>
	<atom:link href="http://www.softwaregfx.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.softwaregfx.com/blog</link>
	<description>Mini articles, sample code, product news and answers to FAQs regarding SoftwareGFX Library</description>
	<lastBuildDate>Sat, 30 Jan 2010 03:48:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SoftwareGFX Library v1.4 Release</title>
		<link>http://www.softwaregfx.com/blog/?p=71</link>
		<comments>http://www.softwaregfx.com/blog/?p=71#comments</comments>
		<pubDate>Fri, 29 Jan 2010 19:43:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Version release]]></category>

		<guid isPermaLink="false">http://www.softwaregfx.com/blog/?p=71</guid>
		<description><![CDATA[We are proud to present the version 1.4 of the SoftwareGFX Library.
Our changes for this version targeted code refactoring, basically recreating the code and the classes and renaming mainly everything, making it more flexible to adding new graphs and in the same time easier to understand and use by the final user.
Also we have added [...]]]></description>
			<content:encoded><![CDATA[<p>We are proud to present the version 1.4 of the SoftwareGFX Library.</p>
<p>Our changes for this version targeted code refactoring, basically recreating the code and the classes and renaming mainly everything, making it more flexible to adding new graphs and in the same time easier to understand and use by the final user.<br />
Also we have added tooltips to all the graphs, so in case you draw a bar chart or column chart and you position your mouse over one of the bars you&#8217;ll get instant details regarding that bar value and series name.</p>
<p>For more information regarding the graphs, please check the <a href="http://www.softwaregfx.com/gallery.php" target="_blank">Gallery</a> and <a href="http://www.softwaregfx.com/downloads.php" target="_blank">Download</a> sections of the website.</p>
<p>Also we have syncronised the demo version of our library and the sample applicaton with the latest version.</p>
<p>We will soon release another version with 2 more graphs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.softwaregfx.com/blog/?feed=rss2&amp;p=71</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SoftwareGFX Library v1.3 Release</title>
		<link>http://www.softwaregfx.com/blog/?p=18</link>
		<comments>http://www.softwaregfx.com/blog/?p=18#comments</comments>
		<pubDate>Mon, 14 Dec 2009 11:47:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Version release]]></category>

		<guid isPermaLink="false">http://www.softwaregfx.com/blog/?p=18</guid>
		<description><![CDATA[We are proud to present the version 1.3 of the SoftwareGFX Library.
It includes 3 more graphics:

Funnel Chart
Radar Chart
Circular Gauge Chart

For more information regarding the graphs, please check the Gallery section of the site.
]]></description>
			<content:encoded><![CDATA[<p>We are proud to present the version 1.3 of the SoftwareGFX Library.</p>
<p>It includes 3 more graphics:</p>
<ol>
<li>Funnel Chart</li>
<li>Radar Chart</li>
<li>Circular Gauge Chart</li>
</ol>
<p>For more information regarding the graphs, please check the <a href="http://www.softwaregfx.com/gallery.php">Gallery section</a> of the site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.softwaregfx.com/blog/?feed=rss2&amp;p=18</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use the library with Windows Forms</title>
		<link>http://www.softwaregfx.com/blog/?p=46</link>
		<comments>http://www.softwaregfx.com/blog/?p=46#comments</comments>
		<pubDate>Mon, 30 Nov 2009 10:26:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical tips]]></category>

		<guid isPermaLink="false">http://www.softwaregfx.com/blog/?p=46</guid>
		<description><![CDATA[Let me remind you that the graphic library was specially designed for WPF applications, but we can do a little trick to use it with Windows Forms applications or even in ASP webpages.
For using it in a Windows Forms project, for starters we need to do the same basic steps as in the previous post [...]]]></description>
			<content:encoded><![CDATA[<p>Let me remind you that the graphic library was specially designed for WPF applications, but we can do a little trick to use it with Windows Forms applications or even in ASP webpages.</p>
<p>For using it in a Windows Forms project, for starters we need to do the same basic steps as in the previous post <a href="http://www.softwaregfx.com/blog/?p=32">How to integrate the library</a>.</p>
<p><span id="more-46"></span></p>
<p>After that, we need to include 3 more references (Project-&gt;Add Reference-&gt;.NET component) to our project so that we can &#8220;sustain&#8221; the WPF core inner mechanisms:</p>
<ol>
<li>PresentationCore</li>
<li>PresentationFramework</li>
<li>WindowsBase</li>
</ol>
<p>Don&#8217;t forget about adding the main library reference: SoftwareGFX_Library.</p>
<p>Imagine we have a simple form with a PictureBox control. For displaying a nice graph inside that Picturebox we can use solely this code, that is perfectly compatible with SoftwareGFX Library:</p>
<pre class="brush: csharp;">
private void afiseazaGrafic()
{
SoftwareGFX_Library.Lines_Chart graph = new SoftwareGFX_Library.Lines_Chart();
string tempFile=&quot;&quot;;

graph.graphType = 0;
graph.showItemsMarker = true;
graph.marker_size = 10;
graph.marker_type = 0;
graph.showLegend = false;

System.Windows.Controls.Canvas cv = new System.Windows.Controls.Canvas();
cv.Height = 350;
cv.Width = 700;

graph.drawLines(ref cv);

// save the picture
tempFile = System.IO.Path.GetTempFileName();

SoftwareGFX_Library.GlobalTools.ExportToPng(tempFile, ref cv);

pctGrafic.Image = System.Drawing.Bitmap.FromFile(tempFile);
}
</pre>
<p>The same principle applies when trying to integrate the library to an ASP.NET project.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.softwaregfx.com/blog/?feed=rss2&amp;p=46</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can I use the free library for freelancing applications?</title>
		<link>http://www.softwaregfx.com/blog/?p=30</link>
		<comments>http://www.softwaregfx.com/blog/?p=30#comments</comments>
		<pubDate>Fri, 20 Nov 2009 12:32:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FAQ]]></category>

		<guid isPermaLink="false">http://www.softwaregfx.com/blog/?p=30</guid>
		<description><![CDATA[Sure, the free charting library is royalty free and you can do whatever you want with it or distribute it in your applications, as long as you don&#8217;t request money solely on the library itself.
]]></description>
			<content:encoded><![CDATA[<p>Sure, the free charting library is royalty free and you can do whatever you want with it or distribute it in your applications, as long as you don&#8217;t request money solely on the library itself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.softwaregfx.com/blog/?feed=rss2&amp;p=30</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do I need to register the demo version?</title>
		<link>http://www.softwaregfx.com/blog/?p=69</link>
		<comments>http://www.softwaregfx.com/blog/?p=69#comments</comments>
		<pubDate>Mon, 16 Nov 2009 18:21:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FAQ]]></category>

		<guid isPermaLink="false">http://www.softwaregfx.com/blog/?p=69</guid>
		<description><![CDATA[No.
As you have noticed, there are 2 functions in GlobalTools: setRegisteredEmail and setLicenseNO. These functions apply only to clients who bought the full version of the software.
If you have the demo version, you don&#8217;t need to do any changes or assigments.
]]></description>
			<content:encoded><![CDATA[<p>No.</p>
<p>As you have noticed, there are 2 functions in GlobalTools: <em>setRegisteredEmail </em>and <em>setLicenseNO</em>. These functions apply only to clients who bought the full version of the software.<br />
If you have the demo version, you don&#8217;t need to do any changes or assigments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.softwaregfx.com/blog/?feed=rss2&amp;p=69</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to save a picture from the canvas for viewing it later?</title>
		<link>http://www.softwaregfx.com/blog/?p=41</link>
		<comments>http://www.softwaregfx.com/blog/?p=41#comments</comments>
		<pubDate>Mon, 16 Nov 2009 16:07:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical tips]]></category>

		<guid isPermaLink="false">http://www.softwaregfx.com/blog/?p=41</guid>
		<description><![CDATA[Just use the GlobalTools class from our package and call the ExportToPng function. Supposing you have drawn the desired graph in the Canvas, all you need to do now in order to save it locally as a .png picture will be to use this line of code:

' save the image
SoftwareGFX_Library.GlobalTools.ExportToPng(&#34;chart_sample.png&#34;, Canvas1)

]]></description>
			<content:encoded><![CDATA[<p>Just use the <strong>GlobalTools</strong> class from our package and call the <strong>ExportToPng</strong> function. Supposing you have drawn the desired graph in the Canvas, all you need to do now in order to save it locally as a .png picture will be to use this line of code:</p>
<pre class="brush: vb;">
' save the image
SoftwareGFX_Library.GlobalTools.ExportToPng(&quot;chart_sample.png&quot;, Canvas1)
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.softwaregfx.com/blog/?feed=rss2&amp;p=41</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can I use this library on Mac or Linux?</title>
		<link>http://www.softwaregfx.com/blog/?p=26</link>
		<comments>http://www.softwaregfx.com/blog/?p=26#comments</comments>
		<pubDate>Mon, 02 Nov 2009 10:05:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FAQ]]></category>

		<guid isPermaLink="false">http://www.softwaregfx.com/blog/?p=26</guid>
		<description><![CDATA[We are afraid not. We are doing our best possible efforts to implement compatible versions with Mac and Linux. Unfortunately a release date is unknown.
]]></description>
			<content:encoded><![CDATA[<p>We are afraid not. We are doing our best possible efforts to implement compatible versions with Mac and Linux. Unfortunately a release date is unknown.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.softwaregfx.com/blog/?feed=rss2&amp;p=26</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to integrate the library</title>
		<link>http://www.softwaregfx.com/blog/?p=32</link>
		<comments>http://www.softwaregfx.com/blog/?p=32#comments</comments>
		<pubDate>Wed, 28 Oct 2009 14:12:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical tips]]></category>

		<guid isPermaLink="false">http://www.softwaregfx.com/blog/?p=32</guid>
		<description><![CDATA[The integration and use of the SoftwareGFX chart library it&#8217;s a doddle.
All you need is Visual Studio 2008 (C# or VB.NET), no matter the edition. If you are interested in downloading the Express editions (that are free of charge) you can find them available here. If you are interested in the Professional editions you can [...]]]></description>
			<content:encoded><![CDATA[<p>The integration and use of the SoftwareGFX chart library it&#8217;s a doddle.</p>
<p>All you need is Visual Studio 2008 (C# or VB.NET), no matter the edition. If you are interested in downloading the Express editions (that are free of charge) you can find them available <a href="http://www.microsoft.com/Express/">here</a>. If you are interested in the Professional editions you can download the trial versions from <a href="http://msdn.microsoft.com/en-us/visualc/aa700831.aspx">here</a>.</p>
<p>Now that we are all set, all we need to do is open a normal VB.NET or C# project with .NET 3.5 framework selected and add a reference to the SoftwareGFX charts library.</p>
<p><span id="more-32"></span></p>
<p>1. Open Visual Studio 2008 and select New WPF Application, using .NET Framework 3.5.</p>
<p style="text-align: center;"><a href="http://www.softwaregfx.com/blog/wp-content/uploads/2009/10/newProjectScreen.jpg"><img class="size-medium wp-image-36 aligncenter" title="newProjectScreen" src="http://www.softwaregfx.com/blog/wp-content/uploads/2009/10/newProjectScreen-300x180.jpg" alt="" width="300" height="180" /></a></p>
<p>2. Add a canvas control and a button on the form.</p>
<p style="text-align: center;"><a href="http://www.softwaregfx.com/blog/wp-content/uploads/2009/10/canvas.jpg"><img class="size-medium wp-image-35 aligncenter" title="canvas" src="http://www.softwaregfx.com/blog/wp-content/uploads/2009/10/canvas-300x285.jpg" alt="" width="300" height="285" /></a></p>
<p style="text-align: left;">3. Add a reference to the SoftwareGFX charts library Lite Edition, by going to Project -&gt; Add Reference menu.</p>
<p style="text-align: left;"><a href="http://www.softwaregfx.com/blog/wp-content/uploads/2009/10/reference.jpg"><img class="size-medium wp-image-37 aligncenter" title="reference" src="http://www.softwaregfx.com/blog/wp-content/uploads/2009/10/reference-300x191.jpg" alt="" width="300" height="191" /></a></p>
<p style="text-align: left;">
<p style="text-align: left;">4. Finally let&#8217;s draw the default splines chart. For that, all you need to write is:</p>
<pre class="brush: vb;">Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) Handles Button1.Click

Dim niceGraph As New SoftwareGFX_Library.Lines_Chart()
niceGraph.graphType = 1 ' splines type
niceGraph.drawLines(Canvas1) ' pass the drawing canvas as an argument

End Sub
</pre>
<p style="text-align: center;"><a href="http://www.softwaregfx.com/blog/wp-content/uploads/2009/10/splines.jpg"><img class="size-medium wp-image-38 aligncenter" title="splines" src="http://www.softwaregfx.com/blog/wp-content/uploads/2009/10/splines-300x165.jpg" alt="" width="300" height="165" /></a></p>
<p style="text-align: center;">
<p>You can easily customize the data array, the axis names, axis divisions, background colors, axis brushes and so on. So in less than 10 minutes you can display your own data using SoftwareGFX charts library.<br />
For more information please check the User&#8217;s Manual in the <a href="http://www.softwaregfx.com/downloads.php">Download section</a> of the site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.softwaregfx.com/blog/?feed=rss2&amp;p=32</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SoftwareGFX Library v1.0 Release</title>
		<link>http://www.softwaregfx.com/blog/?p=4</link>
		<comments>http://www.softwaregfx.com/blog/?p=4#comments</comments>
		<pubDate>Mon, 26 Oct 2009 14:33:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Version release]]></category>

		<guid isPermaLink="false">http://www.softwaregfx.com/blog/?p=4</guid>
		<description><![CDATA[
We are proud to announce the official release of SoftwareGFX Library v1.0 at 26th October 2009.
SoftwareGFX Library is a powerful charting component for small and medium sized companies and individuals, used to create the most attractive and innovative 2D charts for desktop applications and web pages using .NET technology and making use of the new [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.softwaregfx.com/blog/wp-content/uploads/2010/01/logosite.jpg"><img class="size-full wp-image-5 aligncenter" title="logosite" src="http://www.softwaregfx.com/blog/wp-content/uploads/2010/01/logosite.jpg" alt="" width="250" height="82" /></a></p>
<p><strong>We are proud to announce the official release of SoftwareGFX Library v1.0 at 26th October 2009.</strong></p>
<p>SoftwareGFX Library is a powerful charting component for small and medium sized companies and individuals, used to create the most attractive and innovative 2D charts for desktop applications and web pages using .NET technology and making use of the new Window Presentation Foundation from .NET Framework 3.5.</p>
<p>Different chart types support multiple modes, meaning that literally hundreds of different styles and types are available for developers. The legend can be flexible integrated to the chart area. All the text headers and labels can be easily rotated and customized. The chart layout (titles, fonts, colors, etc) can be defined using rich and powerful API, so you can easily manage the style of your chart by changing the parameters.</p>
<p><span id="more-4"></span></p>
<p>It currently includes the following graphics:</p>
<ol>
<li>Area Chart</li>
<li>Bar Chart</li>
<li>Bubbles Chart</li>
<li>Columns Chart</li>
<li>Inverted Columns Chart</li>
<li>Lines Chart</li>
<li>Pie Chart</li>
<li>Doughnut Chart</li>
</ol>
<p>Each type of graph has several types inside of it, making it a total of <strong>22 available 2D graphics</strong>.</p>
<p>For more information regarding the graphs, please check the <a href="http://www.softwaregfx.com/gallery.php">Gallery section</a> of the site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.softwaregfx.com/blog/?feed=rss2&amp;p=4</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
