<?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"><channel><title>Wijmo  &#187;  Topic: Line charts Markers on click</title> <atom:link href="http://wijmo.com/topic/line-charts-markers-on-click/feed/" rel="self" type="application/rss+xml" /><link>http://wijmo.com/topic/line-charts-markers-on-click/feed/</link> <description></description> <pubDate></pubDate> <generator>http://bbpress.org/?v=2.0.2</generator> <language>en</language> <item> <guid>http://wijmo.com/topic/line-charts-markers-on-click/#post-4325</guid><title><![CDATA[Line charts Markers on click]]></title><link>http://wijmo.com/topic/line-charts-markers-on-click/#post-4325</link> <pubDate>Tue, 10 Apr 2012 10:52:58 +0000</pubDate> <dc:creator>Ash</dc:creator><description> <![CDATA[<p>Is there a way to make the markers on a line bigger as its really tricky to use the click function as the hit area is too small, it seems as if the border/stroke and the line itself is in front of the marker.</p><p>Or even better make the market appear in front of everything else so its all click able.</p><p>Im using latest wijmo 2, latest jQuery and developing on chrome</p> ]]> </description> </item> <item> <guid>http://wijmo.com/topic/line-charts-markers-on-click/#post-4425</guid><title><![CDATA[Reply To: Line charts Markers on click]]></title><link>http://wijmo.com/topic/line-charts-markers-on-click/#post-4425</link> <pubDate>Tue, 17 Apr 2012 13:22:32 +0000</pubDate> <dc:creator>Ash</dc:creator><description> <![CDATA[<p>Anyone? I think this is quite a big issue not being able to cleanly and easily click on the markers&#8230;</p> ]]> </description> </item> <item> <guid>http://wijmo.com/topic/line-charts-markers-on-click/#post-4446</guid><title><![CDATA[Reply To: Line charts Markers on click]]></title><link>http://wijmo.com/topic/line-charts-markers-on-click/#post-4446</link> <pubDate>Wed, 18 Apr 2012 15:30:47 +0000</pubDate> <dc:creator>Andrew Duhan</dc:creator><description> <![CDATA[<p>Yeah, the documentation doesn&#8217;t cover a <strong>LOT</strong> of valid options.  In this case, a series can have a markerStyle object, which accepts at least fill, stroke, opacity and width.  You&#8217;re looking for &#8216;width&#8217;.  Here&#8217;s a partial example of how to use it:</p><pre class="brush: js">
seriesList: [
  {
    label: "My sweet line",
    markers: {
      visible: true,
      type: 'circle'
    },
    markerStyle: {
      fill: '#d9007e',
      stroke: '#d9007e',
      opacity: 1,
      width: 3
    }
  },
  data: {},
  etc etc etc....
]
</pre><p>As far as I can tell, the only place this and many other useful options are documented is in the source code.</p> ]]> </description> </item> <item> <guid>http://wijmo.com/topic/line-charts-markers-on-click/#post-6628</guid><title><![CDATA[Reply To: Line charts Markers on click]]></title><link>http://wijmo.com/topic/line-charts-markers-on-click/#post-6628</link> <pubDate>Wed, 15 Aug 2012 10:31:10 +0000</pubDate> <dc:creator>Ash</dc:creator><description> <![CDATA[<p>Still have issues with the markers not being clickable because of the lines&#8230;&#8230; This is causing issues with clients now&#8230;.</p> ]]> </description> </item> <item> <guid>http://wijmo.com/topic/line-charts-markers-on-click/#post-6660</guid><title><![CDATA[Reply To: Line charts Markers on click]]></title><link>http://wijmo.com/topic/line-charts-markers-on-click/#post-6660</link> <pubDate>Thu, 16 Aug 2012 12:21:38 +0000</pubDate> <dc:creator>Richa</dc:creator><description> <![CDATA[<p>Hello Ash,</p><p>Please refer to the following demo in which the markers and the line are clickable :<br /> <a href="http://wijmo.com/demo/explore/#linechart" rel="nofollow">http://wijmo.com/demo/explore/#linechart</a>|symbols</p><p>Could you please share your sample in which these markers are not clickable?</p><p>Thanks,<br /> Richa</p> ]]> </description> </item> <item> <guid>http://wijmo.com/topic/line-charts-markers-on-click/#post-6665</guid><title><![CDATA[Reply To: Line charts Markers on click]]></title><link>http://wijmo.com/topic/line-charts-markers-on-click/#post-6665</link> <pubDate>Thu, 16 Aug 2012 12:49:16 +0000</pubDate> <dc:creator>Ash</dc:creator><description> <![CDATA[<p>Hi, i posted to wijmo twitter account and its now sorted. There IS still an issue with wijmo where hit detection on markers isnt right and sometimes u click the line instead of the marker. The marker should always be in front of the line.</p><p>my sample is here: <a href="http://jsfiddle.net/WWbMj/7/" rel="nofollow">http://jsfiddle.net/WWbMj/7/</a><br /> You can see an alert is fired everytime i click a marker but some time sit is unable to return the data attached to the marker because it clicking the line instead.</p><p>Chris Bannon edited my jsfiddle with  a work around: <a href="http://jsfiddle.net/WWbMj/9/" rel="nofollow">http://jsfiddle.net/WWbMj/9/</a></p> ]]> </description> </item> <item> <guid>http://wijmo.com/topic/line-charts-markers-on-click/#post-7723</guid><title><![CDATA[Reply To: Line charts Markers on click]]></title><link>http://wijmo.com/topic/line-charts-markers-on-click/#post-7723</link> <pubDate>Wed, 26 Sep 2012 11:02:48 +0000</pubDate> <dc:creator>Ash</dc:creator><description> <![CDATA[<p>UPDATE:</p><p>though tit was fixed&#8230;.</p><p>Date return from click isnt correct:</p><p><a href="http://jsfiddle.net/WWbMj/10/" rel="nofollow">http://jsfiddle.net/WWbMj/10/</a></p><p>Seems the line and the markers have different dates. I NEED the marker date.</p> ]]> </description> </item> <item> <guid>http://wijmo.com/topic/line-charts-markers-on-click/#post-8048</guid><title><![CDATA[Reply To: Line charts Markers on click]]></title><link>http://wijmo.com/topic/line-charts-markers-on-click/#post-8048</link> <pubDate>Tue, 09 Oct 2012 12:01:17 +0000</pubDate> <dc:creator>Richa</dc:creator><description> <![CDATA[<p>Hello Ash,</p><p>Please refer to the modified jsfiddle : <a href="http://jsfiddle.net/WWbMj/15/" rel="nofollow">http://jsfiddle.net/WWbMj/15/</a></p><p>Thanks,<br /> Richa</p> ]]> </description> </item> <item> <guid>http://wijmo.com/topic/line-charts-markers-on-click/#post-8086</guid><title><![CDATA[Reply To: Line charts Markers on click]]></title><link>http://wijmo.com/topic/line-charts-markers-on-click/#post-8086</link> <pubDate>Wed, 10 Oct 2012 08:10:58 +0000</pubDate> <dc:creator>Ash</dc:creator><description> <![CDATA[<p>Still dosnt work as u can see after the first red marker all the rest alert 23/3/2012 which isn&#8217;t the date that the marker is given.</p><p>As a paying customer i need this fixing. When i click on the marker i should be alerted the line value&#8230; the maker should ALWAYS be in front of the line&#8230; I believe this is a bug in the source code of wijmo charts.</p> ]]> </description> </item> <item> <guid>http://wijmo.com/topic/line-charts-markers-on-click/#post-8096</guid><title><![CDATA[Reply To: Line charts Markers on click]]></title><link>http://wijmo.com/topic/line-charts-markers-on-click/#post-8096</link> <pubDate>Wed, 10 Oct 2012 10:17:13 +0000</pubDate> <dc:creator>Richa</dc:creator><description> <![CDATA[<p>Hello Ash,</p><p>Please refer to the modified jsFiddle :<a href="http://jsfiddle.net/WWbMj/18/" rel="nofollow">http://jsfiddle.net/WWbMj/18/</a></p><p>However, this approach does not work for datapoints on axis. I am escalating this as a bug to the development team.</p><p>Thanks,<br /> Richa</p> ]]> </description> </item> <item> <guid>http://wijmo.com/topic/line-charts-markers-on-click/#post-8110</guid><title><![CDATA[Reply To: Line charts Markers on click]]></title><link>http://wijmo.com/topic/line-charts-markers-on-click/#post-8110</link> <pubDate>Wed, 10 Oct 2012 15:20:09 +0000</pubDate> <dc:creator>Ash</dc:creator><description> <![CDATA[<p>Ok its working better but not perfect. It seems if there is only 1 date value is dosnt allow a user to click it: <a href="http://jsfiddle.net/WWbMj/19/" rel="nofollow">http://jsfiddle.net/WWbMj/19/</a></p> ]]> </description> </item> <item> <guid>http://wijmo.com/topic/line-charts-markers-on-click/#post-8987</guid><title><![CDATA[Reply To: Line charts Markers on click]]></title><link>http://wijmo.com/topic/line-charts-markers-on-click/#post-8987</link> <pubDate>Fri, 09 Nov 2012 09:18:16 +0000</pubDate> <dc:creator>Ash</dc:creator><description> <![CDATA[<p>Any help would be appreciated as this seems to be a bug in wijmo and its affecting our clients</p> ]]> </description> </item> <item> <guid>http://wijmo.com/topic/line-charts-markers-on-click/#post-9014</guid><title><![CDATA[Reply To: Line charts Markers on click]]></title><link>http://wijmo.com/topic/line-charts-markers-on-click/#post-9014</link> <pubDate>Mon, 12 Nov 2012 06:06:59 +0000</pubDate> <dc:creator>Richa</dc:creator><description> <![CDATA[<p>Hello Ash,</p><p>This issue will be fixed in the next released build.</p><p>Thanks,<br /> Richa</p> ]]> </description> </item> <item> <guid>http://wijmo.com/topic/line-charts-markers-on-click/#post-9020</guid><title><![CDATA[Reply To: Line charts Markers on click]]></title><link>http://wijmo.com/topic/line-charts-markers-on-click/#post-9020</link> <pubDate>Mon, 12 Nov 2012 09:20:26 +0000</pubDate> <dc:creator>Ash</dc:creator><description> <![CDATA[<p>Do we have an ETA on the next release?</p> ]]> </description> </item> <item> <guid>http://wijmo.com/topic/line-charts-markers-on-click/#post-9021</guid><title><![CDATA[Reply To: Line charts Markers on click]]></title><link>http://wijmo.com/topic/line-charts-markers-on-click/#post-9021</link> <pubDate>Mon, 12 Nov 2012 09:21:10 +0000</pubDate> <dc:creator>Richa</dc:creator><description> <![CDATA[<p>Hello Ash,</p><p>The fixed build will be released by this weekend.</p><p>Thanks,<br /> Richa</p> ]]> </description> </item> </channel> </rss>
<!-- Served from: wijmo.com @ 2013-05-22 21:11:03 by W3 Total Cache -->