<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to bugs</title><link>https://sourceforge.net/p/zedgraph/bugs/</link><description>Recent changes to bugs</description><atom:link href="https://sourceforge.net/p/zedgraph/bugs/feed.rss" rel="self"/><language>en</language><lastBuildDate>Sat, 19 Mar 2016 21:55:49 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/zedgraph/bugs/feed.rss" rel="self" type="application/rss+xml"/><item><title>YAxis.Scale.MinGrace not working when minimum value is 0.</title><link>https://sourceforge.net/p/zedgraph/bugs/129/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;It seems that Scale.Min is calculated with wrong formula where min_value is multiplied by some coefficient depending on MinGrace, and when it is min_value 0, Scale.Min remains 0 too.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Andrey Sidorenko</dc:creator><pubDate>Sat, 19 Mar 2016 21:55:49 -0000</pubDate><guid>https://sourceforge.net686f05111b9f1741600ff36990144d3deff7b035</guid></item><item><title>#88 Export to emf keeps the file open</title><link>https://sourceforge.net/p/zedgraph/bugs/88/?limit=25#65df</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi Ithink following code should solve described problem. The file handle of returned by CopyEnhMetaFile(hEMF, tempName) was not "deleted" (freed)&lt;/p&gt;
&lt;p&gt;static internal bool SaveEnhMetafileToFile(Metafile mf, string fileName)&lt;br/&gt;
                {&lt;br/&gt;
                    bool bResult = false;&lt;br/&gt;
                    IntPtr hEMF = mf.GetHenhmetafile(); // invalidates mf &lt;br/&gt;
                    IntPtr hEMFCopy = IntPtr.Zero;&lt;br/&gt;
                    if (!hEMF.Equals(new IntPtr(0)))&lt;br/&gt;
                    {&lt;br/&gt;
                        StringBuilder tempName = new StringBuilder(fileName);&lt;br/&gt;
                        hEMFCopy = CopyEnhMetaFile(hEMF, tempName);&lt;br/&gt;
                        DeleteEnhMetaFile(hEMFCopy);&lt;br/&gt;
                        DeleteEnhMetaFile(hEMF);&lt;br/&gt;
                        bResult = true;&lt;br/&gt;
                    }&lt;br/&gt;
                    return bResult;&lt;br/&gt;
                }&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mirko Donatzer</dc:creator><pubDate>Mon, 02 Nov 2015 10:08:08 -0000</pubDate><guid>https://sourceforge.netcd9a9a64902660b2f9377c18d5a807090f77ba78</guid></item><item><title>Elements of classes are hided</title><link>https://sourceforge.net/p/zedgraph/bugs/128/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi&lt;br /&gt;
I´m new on ZedGraph. It´s a wonderfull tool, but I´m in a strange situation: some elements of classes don´t appear on Intellisense (VS2010, C#) and even causes compilation error. For example: ZedGraphControl doesn´t has PointValueEvent event (it doesn´t appear as an option element in popup). &lt;br /&gt;
Am I forgetinng something? I´m using V5.1.5. &lt;br /&gt;
Sorry if it´s not the right place for this doubt.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Gustavo Furtado</dc:creator><pubDate>Mon, 13 Jul 2015 19:25:35 -0000</pubDate><guid>https://sourceforge.net1b5c4aac79eb504aea7a2efe5da291302bbe60f7</guid></item><item><title>#127 Legend is not showing</title><link>https://sourceforge.net/p/zedgraph/bugs/127/?limit=25#bbde</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Sorry: forgot to specifiy that each curve must have a label:&lt;br /&gt;
        myCurve.Label.Text = CurveLabel&lt;br /&gt;
        myCurve.Label.IsVisible = True&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Johnny</dc:creator><pubDate>Sun, 12 Jul 2015 20:52:00 -0000</pubDate><guid>https://sourceforge.netb11c12c34f57d622250e97292d271d4609d84f73</guid></item><item><title>Legend is not showing</title><link>https://sourceforge.net/p/zedgraph/bugs/127/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Legend is not showing even if I have:&lt;br /&gt;
        myPane.Legend.IsVisible = True&lt;br /&gt;
        myPane.Legend.Position = LegendPos.InsideBotRight&lt;br /&gt;
how can I solve this? I cannot find any other answers over the internet; it seems the legend will always show to all other people.&lt;/p&gt;
&lt;p&gt;I'm using 5.15 with vb.net and vs.2008.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Johnny</dc:creator><pubDate>Sun, 12 Jul 2015 20:39:49 -0000</pubDate><guid>https://sourceforge.net57d7c1915666e4fd8ea6711acbcb4b2c692305c0</guid></item><item><title>BoxObj on log y axis</title><link>https://sourceforge.net/p/zedgraph/bugs/126/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;BoxObj height is not drawn correctly on y axis using log scale.&lt;br /&gt;
BoxObj.Location.Y2 value is &lt;strong&gt;&lt;em&gt;_y+_height;&lt;/em&gt;&lt;/strong&gt; should be &lt;strong&gt;&lt;em&gt;_y-_height;&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;Workaround:&lt;/strong&gt;&lt;br /&gt;
Set the BoxObj.Location.Height = -BoxObj.Location.Height when log y axis is used.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John</dc:creator><pubDate>Tue, 10 Feb 2015 10:05:36 -0000</pubDate><guid>https://sourceforge.netc91c845c4b72dc3aa550231f0e1f3acaab5f58f5</guid></item><item><title>win8系统下鼠标拖拽选择区域时虚线框闪烁</title><link>https://sourceforge.net/p/zedgraph/bugs/125/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;用鼠标左键拖拽选择区域放大时，软件会绘制虚线框用以指示区域位置和大小。&lt;br /&gt;
但是如果该操作在Win8系统上进行时，就会发现虚线框会不停地闪烁。&lt;br /&gt;
我觉得这是个绘制效率的问题，于是我使用系统接口方法来绘制，如此一来，效果好多了。&lt;br /&gt;
附件中的文件是我本地修改后的代码，附带将Win8下鼠标提示框闪烁的问题也解决了。&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">杰利诚</dc:creator><pubDate>Fri, 27 Jun 2014 02:40:30 -0000</pubDate><guid>https://sourceforge.netf8523ef0feed20718a10a83c8565d3b1b5e01a8a</guid></item><item><title>#124 PointValueEvent Fires multiple times</title><link>https://sourceforge.net/p/zedgraph/bugs/124/?limit=25#9706</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;hello&lt;br /&gt;
you can fixed it by "Update point tool tips only if they changed." patch,which number is 96.&lt;br /&gt;
hope useful&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">杰利诚</dc:creator><pubDate>Fri, 27 Jun 2014 02:29:34 -0000</pubDate><guid>https://sourceforge.net68c14017b059cc4d6b14955bb4b8f33a24376bc2</guid></item><item><title>#124 PointValueEvent Fires multiple times</title><link>https://sourceforge.net/p/zedgraph/bugs/124/?limit=25#980c</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Reproduced also with .net target framework: 4.5.1&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Wuerr Marcus</dc:creator><pubDate>Sat, 15 Mar 2014 12:55:11 -0000</pubDate><guid>https://sourceforge.netc03c04888f253b8b05ec9edc8bf38086e7ebb975</guid></item><item><title>PointValueEvent Fires multiple times</title><link>https://sourceforge.net/p/zedgraph/bugs/124/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;PointValueEvent (of ZedGraph.ZedGraphControl) is raised multiple times.&lt;/p&gt;
&lt;p&gt;When I move my mouse cursor over a value point in the graph the PointValueEvent is raised multiple times.&lt;br /&gt;
The exact # seems to be random (3-10).&lt;br /&gt;
More importantly if I actually return a tooltip string in the event handler the event is raised repeatedly.&lt;br /&gt;
Only by returning an empty string could I prevent the event from being raised indefinitely.&lt;/p&gt;
&lt;p&gt;When used as intended (returning a tooltip string) the result is that the tool tip flickers (as the value is updated with each event).&lt;/p&gt;
&lt;p&gt;Windows: 7, &lt;br /&gt;
zedGraph: 5.1.5.28844, &lt;br /&gt;
IDE: SharpDevelop&lt;br /&gt;
.net target framework: 2.0&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Wuerr Marcus</dc:creator><pubDate>Sat, 15 Mar 2014 12:17:38 -0000</pubDate><guid>https://sourceforge.net2fcf53c936cedde6ba9542696a222f716e30414d</guid></item></channel></rss>