Charts zoom / range selector (version 2)
August 27, 2008 18 Comments
this is the second chart range selector.
some of the code here is also borrowed from somewhere (sorry for not remembering who from).
WPF – Silverlight – Flex (toxicated by Ofir Shemesh)
August 27, 2008 18 Comments
this is the second chart range selector.
some of the code here is also borrowed from somewhere (sorry for not remembering who from).
August 25, 2008 4 Comments
(long time… working now with Silverlight, I thought to jump back to the fun stuff)
This is a simple range selector on a chart, to be used for zooming in my case.
It is very simple and some of the code is borrowed (I can’t remember where from), nothing fancy here but I wanted to publish it for all to see.
As the title implicit I have another, different, range selector… will publish soon.
Demo is here (right click for source)
Source is here
July 18, 2008 2 Comments
suppose you have a chart with a line series that represents some data and thresholds OK/Warning.
now what if the whole data in the chart is to be changed by the user.
of course you can supply her with some DataGrid to reflect the data and make the cells editable, then reflect the edited data back to the chart.
but we are talking Flex here.
wouldn’t it be so much cooler and usable if she can just drag the data around on the chart?!
this was pretty easy to achieve.
the whole line series (black) can be dragged up/down along the Y axis.
each data point on both area series (OK/Warning thresholds) can be dragged.
on the DataGrid you can see the data reflected from the chart in real-time.
Demo is here (right click for source)
Source is here
July 17, 2008 7 Comments
looks like i have taken the scenic road.
a while ago i have posted about how to “programmatically showing data tips on a chart“.
there is an easier way, well… it’s much-much easier.
dataTipItems is a property for Series. it is an array on non-interactive data tips.
populate it with chart items, then set the chart’s showAllDataTips to true.
that easy.
(i enjoy riding the scenic road)
Demo is here (right click for source)
Source is here