<?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>Timetric Blog &#187; user interface</title>
	<atom:link href="http://blog.timetric.com/category/user-interface/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.timetric.com</link>
	<description></description>
	<lastBuildDate>Tue, 27 Jul 2010 14:32:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>SVG graphs on timetric.com</title>
		<link>http://blog.timetric.com/2010/07/05/svg-graphs/</link>
		<comments>http://blog.timetric.com/2010/07/05/svg-graphs/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 13:24:27 +0000</pubDate>
		<dc:creator>Dan Wilson</dc:creator>
				<category><![CDATA[plotting]]></category>
		<category><![CDATA[user interface]]></category>

		<guid isPermaLink="false">http://blog.timetric.com/?p=402</guid>
		<description><![CDATA[When we launched timetric.com a little over a year ago, we needed a visualization solution so people could see our lovely data. We looked around, and decided that for performance and cross-browser compatibility, we&#8217;d create our own Flash widget based &#8230; <a href="http://blog.timetric.com/2010/07/05/svg-graphs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When we launched <a href="http://timetric.com">timetric.com</a> a little over a year ago, we needed a visualization solution so people could see our lovely data. We looked around, and decided that for performance and cross-browser compatibility, we&#8217;d create our own Flash widget based on the Flex Data Visualization Components. This served us well, and will continue to do so for some time, but the times they are a-changing.</p>
<p>Today&#8217;s browser landscape looks quite different. Javascript performance his improved significantly, and IE6&#8242;s market share has halved. More significantly, there are a lot of browsers out there that aren&#8217;t even Flash-capable. Hello, Apple!</p>
<p>I&#8217;ll go into the techie details below, but the short version is this: if you used to see a big blank space in the middle of the page on Timetric, you&#8217;ll probably now see an attractive, interactive graph; if you&#8217;re used to seeing a &#8220;Loading…&#8221; indicator then a Flash graph you&#8217;ll probably still see that. However, if you&#8217;re feeling adventurous you can try adding &#8216;?noflash&#8217; to the end of the URL and you&#8217;ll get the cool new thing everyone&#8217;s raving about.</p>
<div id="attachment_403" class="wp-caption aligncenter" style="width: 564px"><a href="http://blog.timetric.com/files/2010/07/ipad_svg.png"><img class="size-full wp-image-403  " title="SVG graphs on an iPad" src="http://cdn.timetric.com/tmp/blog/ipad_svg.png" alt="" width="554" height="426" /></a><p class="wp-caption-text">Timetric&#39;s SVG graphing from an iPad</p></div>
<h2>Techie Bits</h2>
<p>We were looking for a plotting solution which matched the following criteria:</p>
<ul>
<li>Standards compliant</li>
<li>Fast &amp; light-weight</li>
<li>Cross-browser</li>
<li>Interactive (to both mouse events and touch)</li>
<li>Attractive</li>
</ul>
<h3>SVG vs. Canvas</h3>
<p>This first criterion means that the choice is really between <a href="http://en.wikipedia.org/wiki/Scalable_Vector_Graphics">SVG</a> and <a href="http://en.wikipedia.org/wiki/Canvas_(HTML_element)">Canvas</a>. The former is a true vector format, expressed in XML, and with nodes which can be manipulated via the DOM. The latter is essentially a scriptable bitmap image, which is often more efficient, but manipulation and interactivity aren&#8217;t what it&#8217;s good at. So which should we use?</p>
<p>When assessing the two technologies we need to consider three classes of browsers. The first are the modern, standards-compliant desktop browsers (Firefox, Chrome, Safari, Opera and hopefully soon IE9). The second include all shipping versions of Internet Explorer. The third group are new-fangled touch-based devices like Apple&#8217;s iPhone and iPad.</p>
<p>The first group is the easiest and least interesting: both SVG and canvas just work.</p>
<p>Visitors using IE make up around 38% of our userbase, yet they don&#8217;t support either of these technologies. Luckily, they do support Microsoft&#8217;s version of SVG, called <a href="http://en.wikipedia.org/wiki/Vector_Markup_Language">VML</a>. The <a href="http://code.google.com/p/explorercanvas/">excanvas</a> library can be used to emulate the canvas element, and the actual drawing is done in VML. Alternatively, the excellent <a href="http://raphaeljs.com/">Raphaël</a> library provides a vector drawing API which will output SVG to browsers that support it, and VML to IE. Take-home message: both can be made to work, but since either will result in VML nodes in IE&#8217;s DOM, it&#8217;s better to use the method that&#8217;ll take full advantage of that, namely SVG.</p>
<p>The touch-based devices provided the knock-out blow I was looking for. When you&#8217;re using the browser on your iPhone or iPad you&#8217;re generally looking at the page at an arbitrary zoom level. Bitmaps look pretty bad at arbitrary zoom levels, while vector graphics look clean and sharp.</p>
<div id="attachment_409" class="wp-caption aligncenter" style="width: 564px"><a href="http://blog.timetric.com/files/2010/07/vector-vs-bitmap-google.png"><img class="size-full wp-image-409 " title="vector vs bitmap - google" src="http://cdn.timetric.com/tmp/blog/vector-vs-bitmap-google.png" alt="" width="554" height="298" /></a><p class="wp-caption-text">Vector vs. bitmap graphics at arbitrary zoom level</p></div>
<p>That was rather a long-winded way of saying that SVG is better at drawing vector-y things like graphs.</p>
<h3>Charting Frameworks</h3>
<p>Having made the decision to use SVG via Raphaël, I took a look at <a href="http://g.raphaeljs.com/">gRaphaël</a>. Sadly, the project seems rather immature, isn&#8217;t that well supported (only one commit in the last 9 months), and has no documentation. Since we&#8217;re heavy users of <a href="http://jquery.com/">jQuery</a>, what I <em>really</em> wanted was a version of the awesome <a href="http://code.google.com/p/flot/">Flot</a> plotting library which could output SVG instead of Canvas.</p>
<p>Nothing like that seemed to exist, so I set about replacing Flot&#8217;s drawing code with Raphaël calls. The result I&#8217;m calling Raphlot, and it&#8217;s available on <a href="http://github.com/djw/raphlot">GitHub</a> under the same MIT license as Flot. Not all of Flot&#8217;s functionality has been translated, but enough for it to be useful on Timetric.</p>
<p>I&#8217;ve made a start on the interactivity, which you can try on Timetric, but I&#8217;ll write about that in a future blog post.</p>
<p>What do you think? Leave your comments below!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.timetric.com/2010/07/05/svg-graphs/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>New Dashboard</title>
		<link>http://blog.timetric.com/2009/08/12/new-dashboard/</link>
		<comments>http://blog.timetric.com/2009/08/12/new-dashboard/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 13:59:27 +0000</pubDate>
		<dc:creator>Dan Wilson</dc:creator>
				<category><![CDATA[user interface]]></category>

		<guid isPermaLink="false">http://blog.timetric.com/?p=195</guid>
		<description><![CDATA[Yesterday we rolled out an exciting update to the Dashboard, which now looks something like this: More important than the lick of paint, though, is all the new stuff you can do with it! Though it might sound boring, the &#8230; <a href="http://blog.timetric.com/2009/08/12/new-dashboard/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday we rolled out an exciting update to the Dashboard, which now looks something like this:</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-196" title="Dashboard v2" src="http://blog.timetric.com/wp-content/uploads/2009/08/new-dash-1024x672.png" alt="Dashboard v2" width="553" height="363" /></p>
<p>More important than the lick of paint, though, is all the new stuff you can do with it! Though it might sound boring, the Dashboard is all about <strong>lists</strong>. The old Dashboard had only one — a list of series you&#8217;ve &#8216;starred&#8217;. We&#8217;ve added two others: &#8221;My Series&#8221; for series you&#8217;ve created yourself and &#8220;Recently Viewed&#8221; which shows you the last few series you&#8217;ve looked at. Soon we&#8217;ll let you create your own custom lists too.</p>
<p>Now that you have all those series at your fingertips, you&#8217;ll want to compare and analyze them, right? Just select the ones you&#8217;re interested in, and click &#8216;Build&#8217;, &#8216;Overlay&#8217; or &#8216;Versus&#8217; at the top!</p>
<p>Talking about building&#8230; If you&#8217;re a developer, you can now build models through our API as well — Toby&#8217;ll be blogging about that very soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.timetric.com/2009/08/12/new-dashboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easier Embedding</title>
		<link>http://blog.timetric.com/2009/06/19/easier-embedding/</link>
		<comments>http://blog.timetric.com/2009/06/19/easier-embedding/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 17:04:06 +0000</pubDate>
		<dc:creator>Dan Wilson</dc:creator>
				<category><![CDATA[user interface]]></category>
		<category><![CDATA[embedding]]></category>
		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://blog.timetric.com/?p=167</guid>
		<description><![CDATA[One of the key features of Timetric is that we let you embed our data into your own site. We want to be the place to go when you&#8217;re looking for data to view and analyze, but we reckon that &#8230; <a href="http://blog.timetric.com/2009/06/19/easier-embedding/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of the key features of Timetric is that we let you embed our data into your own site. We want to be <strong>the</strong> place to go when you&#8217;re looking for data to view and analyze, but we reckon that when it comes to layering interpretation over the top, the best place for that is on your own blog or website.</p>
<p>To make this easier, we&#8217;ve put a big &#8216;<em>Share this series</em>&#8216; button on the pages of all public series, which when clicked will reveal:</p>
<p style="text-align: center;"><img class="size-full wp-image-168  aligncenter" title="New Embed UI" src="http://blog.timetric.com/wp-content/uploads/2009/06/embedui.png" alt="New Embed UI" width="377" height="292" /></p>
<p style="text-align: left;">The immediate benefits are that you now have access to the code which will give you a sparkline (a common request!), and that either bit of code can be quickly copied to your clipboard using the little button at the side (thanks to Tom Preston-Werner&#8217;s <a href="http://github.com/mojombo/clippy/">Clippy</a>). We don&#8217;t plan to stop here though — look out for more advanced features over the coming months!</p>
<p style="text-align: left;">For some high-profile examples of our graphs in the wild, check out the fascinating <a href="http://www.guardian.co.uk/datablog">Guardian Data Blog</a>:</p>
<p style="text-align: left;"><a href="http://www.guardian.co.uk/news/datablog/2009/mar/01/government-borrowing-economy1">http://www.guardian.co.uk/news/datablog/2009/mar/01/government-borrowing-economy1</a></p>
<p style="text-align: left;"><a href="http://www.guardian.co.uk/news/datablog/2009/mar/02/unemployment-and-employment-statistics-economics">http://www.guardian.co.uk/news/datablog/2009/mar/02/unemployment-and-employment-statistics-economics</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.timetric.com/2009/06/19/easier-embedding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New search and new graphs!</title>
		<link>http://blog.timetric.com/2009/03/25/new-search-and-new-graphs/</link>
		<comments>http://blog.timetric.com/2009/03/25/new-search-and-new-graphs/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 18:47:57 +0000</pubDate>
		<dc:creator>Andrew Walkingshaw</dc:creator>
				<category><![CDATA[plotting]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[user interface]]></category>

		<guid isPermaLink="false">http://blog.timetric.com/?p=80</guid>
		<description><![CDATA[We&#8217;ve just added a couple of new features to Timetric which we think you&#8217;ll find useful. Up until now, it&#8217;s been a bit tricky to get a quick overview of the data in an area; you&#8217;ve needed to save all &#8230; <a href="http://blog.timetric.com/2009/03/25/new-search-and-new-graphs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve just added a couple of new features to <a href="http://timetric.com/">Timetric</a> which we think you&#8217;ll find useful. Up until now, it&#8217;s been a bit tricky to get a quick overview of the data in an area; you&#8217;ve needed to save all the series to your dashboard individually before you could plot them against each other &#8211; which meant you had to be logged in! &#8211; and, on top of that, the different sorts of search we had (by tag and by free-text) weren&#8217;t as well integrated as they could have been.</p>
<p>Well, we&#8217;ve changed all that.</p>
<p><a href="http://timetric.com/search/?q=employment">Take employment data as an example:</a></p>
<div id="attachment_81" class="wp-caption aligncenter" style="width: 597px"><img class="size-full wp-image-81" title="picture-4" src="http://blog.timetric.com/wp-content/uploads/2009/03/picture-4.png" alt="Search results for &quot;Employment&quot; on Timetric" width="587" height="415" /><p class="wp-caption-text">Search results for &quot;Employment&quot; on Timetric</p></div>
<p>Two big changes here &#8211; firstly, there are sparklines, so you can get a feel for all the data in front of you immediately; secondly, you now get all the relevant tags at the top of the page on every search result, so you can immediately start filtering through the search results to find what you&#8217;re interested in. <a href="http://timetric.com/tags/utilities/?n=20&amp;q=Employment">Let&#8217;s say that&#8217;s the utilities sector.</a></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-86" title="picture-5" src="http://blog.timetric.com/wp-content/uploads/2009/03/picture-5.png" alt="picture-5" width="587" height="415" /></p>
<p>The stars on the right here, if you&#8217;re logged in, immediately save series to <a href="http://timetric.com/dashboard">your dashboard</a>; they&#8217;re gold for each series you&#8217;re already watching. But the bigger change is on the left; if you check the series you&#8217;re interested in&#8230;</p>
<div id="attachment_87" class="wp-caption aligncenter" style="width: 597px"><img class="size-full wp-image-87" title="picture-6" src="http://blog.timetric.com/wp-content/uploads/2009/03/picture-6.png" alt="Selecting series in Timetric search results" width="587" height="415" /><p class="wp-caption-text">Selecting series in Timetric search results</p></div>
<p>and then hit &#8220;Overlay&#8221; or &#8220;Versus&#8221;, which you&#8217;ll find at the start and end of the search results page:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-88" title="picture-7" src="http://blog.timetric.com/wp-content/uploads/2009/03/picture-7.png" alt="picture-7" width="587" height="415" /></p>
<p>you can start making plots straight from search results.</p>
<div id="attachment_89" class="wp-caption aligncenter" style="width: 597px"><img class="size-full wp-image-89" title="picture-8" src="http://blog.timetric.com/wp-content/uploads/2009/03/picture-8.png" alt="Transportation employment's much more seasonal in Alaska than in Alabama. " width="587" height="415" /><p class="wp-caption-text">Transportation employment&#39;s much more seasonal in Alaska than in Alabama. </p></div>
<p>You can even get the embed code to put a graph into your blog straight from there:</p>
<p><object width="520" height="520" data="http://timetric.com/swf/corr.swf" type="application/x-shockwave-flash"><param name="wmode" value="opaque" /><param name="allowFullScreen" value="true" /><param name="flashvars" value="data=http%3A%2F%2Ftimetric.com%2Fembed%2FLXPnVnb9RweJgrRVAX1gtw%2CjsiQ6PVIROyT0r3VwzWSjw%2Fversus%2F" /><param name="src" value="http://timetric.com/swf/corr.swf" /><param name="bgcolor" value="#FFFFFF" /><param name="allowfullscreen" value="true" /></object></p>
<p>And that gives us a chance to mention another new feature which a few of you&#8217;ve been asking for – if you hover your mouse over the points in this graph, you&#8217;ll see each measurement in the scatter plot labelled with the time it comes from.</p>
<p>The big changes to graphing here are actually under the covers, though: after this, we&#8217;ll be able to make some really exciting improvements in the near future.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.timetric.com/2009/03/25/new-search-and-new-graphs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Improved Embedding</title>
		<link>http://blog.timetric.com/2009/03/19/improved-embedding/</link>
		<comments>http://blog.timetric.com/2009/03/19/improved-embedding/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 09:43:17 +0000</pubDate>
		<dc:creator>Dan Wilson</dc:creator>
				<category><![CDATA[plotting]]></category>
		<category><![CDATA[user interface]]></category>
		<category><![CDATA[plotter ui]]></category>

		<guid isPermaLink="false">http://blog.timetric.com/?p=74</guid>
		<description><![CDATA[Amongst the changes we made to Timetric at the start of this week were some improvements to our embeddable plots. Infosthetics made a couple of requests for features that we had planned, but didn&#8217;t have time to implement before our &#8230; <a href="http://blog.timetric.com/2009/03/19/improved-embedding/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Amongst the changes we made to Timetric at the start of this week were some improvements to our embeddable plots. <a href="http://infosthetics.com/archives/2009/03/timetric_sharing_time_series_analysis_online.html">Infosthetics</a> made a couple of requests for features that we had planned, but didn&#8217;t have time to implement before our public beta.</p>
<p>We aim to please, so now we display the title of the series on the vertical axis, and there&#8217;s a handy link back to the series on timetric.com.</p>
<p><object width="100%" height="390" data="http://timetric.com/swf/plotter.swf" type="application/x-shockwave-flash"><param name="wmode" value="opaque" /><param name="allowFullScreen" value="true" /><param name="flashvars" value="data=http%3A%2F%2Ftimetric.com%2Fembed%2FiGydTEP_Tfeo0-O_7iG4lg%2Fgraph%2F" /><param name="src" value="http://timetric.com/swf/plotter.swf" /><param name="bgcolor" value="#FFFFFF" /><param name="allowfullscreen" value="true" /></object></p>
<p>The only problem is that getting this to work required a couple of changes to the embed codes you paste into your blog. New embeds will get this automatically, but if you&#8217;ve got any existing graphs embedded in your site, you&#8217;ll need to re-embed them using the new code to see these changes. We&#8217;ll continue to support the old style indefinitely, so don&#8217;t worry if you don&#8217;t feel like updating!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.timetric.com/2009/03/19/improved-embedding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Timetric&#039;s New Graphing Tool</title>
		<link>http://blog.timetric.com/2009/01/30/timetrics-new-graphing-tool/</link>
		<comments>http://blog.timetric.com/2009/01/30/timetrics-new-graphing-tool/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 15:42:16 +0000</pubDate>
		<dc:creator>Dan Wilson</dc:creator>
				<category><![CDATA[user interface]]></category>
		<category><![CDATA[plotter ui]]></category>

		<guid isPermaLink="false">http://blog.timetric.com/?p=51</guid>
		<description><![CDATA[As the observant amongst you may have noticed from the last post, we have a new graphing tool on Timetric. When we launched our private beta, we needed a graphing package quick-smart, so we bought-in a third-party solution to tide us over &#8230; <a href="http://blog.timetric.com/2009/01/30/timetrics-new-graphing-tool/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As the observant amongst you may have noticed from the last post, we have a new graphing tool on Timetric.</p>
<p>When we launched our private beta, we needed a graphing package quick-smart, so we bought-in a third-party solution to tide us over until we could find time to build our own.</p>
<p>Over the last month or so, we&#8217;ve been building a replacement from scratch, the results of which look a little something like:</p>
<p><object width="100%" height="400"><param name="wmode" value="opaque"><param name="allowFullScreen" value="true"></param><param name="movie" value="http://timetric.com/swf/plotter.swf"></param><param name="flashvars" value="data=http%3A%2F%2Ftimetric.com%2Fembed%2FR2HX-wG4QGGxn_Jsh7_aIg%2Fgraph%2F"></param><embed width="100%" height="400" flashvars="data=http%3A%2F%2Ftimetric.com%2Fembed%2FR2HX-wG4QGGxn_Jsh7_aIg%2Fgraph%2F" bgcolor="#FFFFFF" allowFullScreen="true" src="http://timetric.com/swf/plotter.swf" type="application/x-shockwave-flash"/></object><br />
<a href="http://timetric.com/series/R2HX-wG4QGGxn_Jsh7_aIg/">Average surface temperature anomaly: Global (before smoothing)</a></p>
<p>For this initial release, the big changes are under the hood. We can now handle significantly larger data sets, up more than 20-fold from around 5000 points to over 100,000! (For the more technically-minded, this is largely due to the switch from interpreted Actionscript 2, to bytecode-compiled Actionscript 3.) We were also able to add a fun new feature: full-screen mode. While sounding rather frivolous, it&#8217;s actually surprising useful, especially when there are a lot of data points. To find it, right/ctrl-click on the graph.</p>
<p>Our overlay plots have also seen some attention. The biggest complaint we had for our old version was that when you overlaid series which varied on very different scales, you couldn&#8217;t really make anything out. Our new version supports multiple y-axes to make things better. Try click the check-box below!</p>
<p><object width="100%" height="400" data="http://timetric.com/swf/plotter.swf" type="application/x-shockwave-flash"><param name="wmode" value="opaque" /><param name="allowFullScreen" value="true" /><param name="flashvars" value="data=http%3A%2F%2Ftimetric.com%2Fembed%2FDMrAf_pQRj6jeItUKxpXGQ%2Fgraph%2F;http%3A%2F%2Ftimetric.com%2Fembed%2FDgnhu9g2SuKf4-iCRFsQ1A%2Fgraph%2F;http%3A%2F%2Ftimetric.com%2Fembed%2FLdCg8MljRF-VaxyYKrw9QA%2Fgraph%2F" /><param name="src" value="http://timetric.com/swf/plotter.swf" /><param name="bgcolor" value="#FFFFFF" /><param name="allowfullscreen" value="true" /></object></p>
<p><a href="http://timetric.com/series/DMrAf_pQRj6jeItUKxpXGQ/" target="_blank">ECB exchange rates: Euro vs. GBP</a> and <a href="http://timetric.com/series/Dgnhu9g2SuKf4-iCRFsQ1A/" target="_blank">ECB exchange rates: Euro vs. USD</a> and <a href="http://timetric.com/series/LdCg8MljRF-VaxyYKrw9QA/" target="_blank">ECB exchange rates: Euro vs. JPY</a></p>
<p>As always, if you have any comments or suggestions, please <a href="http://getsatisfaction.com/inklingsoftware/">get in touch</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.timetric.com/2009/01/30/timetrics-new-graphing-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dashboard improvements</title>
		<link>http://blog.timetric.com/2008/11/17/dashboard-improvements/</link>
		<comments>http://blog.timetric.com/2008/11/17/dashboard-improvements/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 15:27:22 +0000</pubDate>
		<dc:creator>Dan Wilson</dc:creator>
				<category><![CDATA[user interface]]></category>
		<category><![CDATA[dashboard]]></category>
		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://blog.timetric.com/?p=21</guid>
		<description><![CDATA[Hello, Dan Wilson here. I&#8217;m doing most of the user interface stuff for Timetric. This morning I pushed a big update to the dashboard page, adding some new functionality, and making it quite a bit prettier. Overview The dashboard is &#8230; <a href="http://blog.timetric.com/2008/11/17/dashboard-improvements/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hello, Dan Wilson here. I&#8217;m doing most of the user interface stuff for Timetric.</p>
<p>This morning I pushed a big update to the dashboard page, adding some new functionality, and making it quite a bit prettier.</p>
<h3>Overview</h3>
<p>The dashboard is the registered user&#8217;s entry point to the site, and gives a brief summary of all the nuggets they&#8217;ve expressed an interest in.</p>
<p style="text-align: center; "><a href="http://blog.timetric.com/wp-content/uploads/2008/11/dash.png"><img class="size-medium wp-image-22 aligncenter" title="Dashboard" src="http://blog.timetric.com/wp-content/uploads/2008/11/dash-300x197.png" alt="" width="300" height="197" /></a></p>
<p>The summary includes a <a href="http://en.wikipedia.org/wiki/Sparkline" target="_blank">sparkline</a> for each nugget, which provides a succinct visual summary of the history of the series. We&#8217;ve rewritten the sparkline generator from scratch for this update, and as a result is considerably faster, and gives more attractive results.</p>
<h3>Analysis</h3>
<p>Since the dashboard is the natural place to view collections of nuggets, we&#8217;ve added some basic analysis tools. Pairs of nuggets can be selected using the tick boxes down the left-hand edge, and overlaid upon each other, or turned into a &#8220;versus&#8221;-graph using the buttons at the bottom.</p>
<p>You can also create a new calculated nugget from your selections by clicking the button under &#8220;Build a Nugget&#8221;.</p>
<p><a href="http://blog.timetric.com/wp-content/uploads/2008/11/dash-build.png"><img class="aligncenter size-medium wp-image-23" title="Build Widget" src="http://blog.timetric.com/wp-content/uploads/2008/11/dash-build.png" alt="" width="280" height="298" /></a></p>
<p>You can then edit the formula using an Excel-like <a href="http://timetric.com/help/formulae/">syntax</a>, and then click &#8220;Create&#8221;.</p>
<h3><strong>Feed Me</strong></h3>
<p>Finally, we&#8217;ve added a combined news feed for all the nuggets on your dashboard, which you can subscribe to in any news-reader which supports password-protected feeds.</p>
<p><a href="http://blog.timetric.com/wp-content/uploads/2008/11/dash-feed.png"><img class="aligncenter size-medium wp-image-24" title="Dashboard Feed" src="http://blog.timetric.com/wp-content/uploads/2008/11/dash-feed-300x14.png" alt="" width="300" height="14" /></a></p>
<p>As usual, we&#8217;d love to hear your <a href="http://getsatisfaction.com/inklingsoftware/">feedback</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.timetric.com/2008/11/17/dashboard-improvements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
