Forum  Core :: SDK (Vi...  Developing the ...  Charts drilldown using Visifire
Previous Previous
 
Next Next
New Post 2/15/2010 1:52 AM
  nadavmiran
5 posts
No Ranking


Charts drilldown using Visifire 

Hi,

I'm using on app. the visifire.test.dll and I want to possible drill down while clicking on one of the datasiries.

According to the link below, it possible, but there are no exposed methods that supports it in Gizmox:

http://www.visifire.com/blog/2009/03/05/drilldown-silverlight-charts-using-visifire/

There is any way which I be able to perform drilldown?

Tnx,

Nadav

 
New Post 2/19/2010 1:47 PM
  palli
11189 posts
1st Level Poster




Re: Charts drilldown using Visifire 

Hi Nadav,

When we last updated our Visifire charts component, late last year, the newest stable version of Visifire was version 2.3.2.0, since then, Visifire has released version 3, and what you are reading applies to version 3, if I'm not mistaken.

I've already written an issue to request update to Visifire version 3 and you can track that issue here.

Palli

 


Páll Björnsson - Visual WebGui support team - Email: support@visualwebgui.com
 
New Post 2/20/2010 10:31 PM
  nadavmiran
5 posts
No Ranking


Re: Charts drilldown using Visifire 
Modified By nadavmiran  on 2/21/2010 1:32:32 AM)

Hi Palli,

Thanks for your reply,

2 question I have then,

1. Are you about to implement the drilldown option on the next release?

2. When you are expecting to release it?

Must say, who ever saw the implementation of the charts, well, It's sales!!! people are amazed. But all asking for drilldown.....

Tnx,

Nadav.

 
New Post 3/20/2010 11:02 AM
  palli
11189 posts
1st Level Poster




Re: Charts drilldown using Visifire 

Hi Nadav,

The issue I created has now been scheduled to 6.4.0RC0 which is the next milestone to the final release of 6.4 and will come after Beta2 is out, and possible fixes to that. I can't promise you yet that there will be full drilldown possibilities, but as far as I understood from the Visifire changelog, there should be.

In the meantime, you might be interested in this issue here (and here for 6.3.15), which will implement a Click event that can be used for drilldown implementations.

Palli

 


Páll Björnsson - Visual WebGui support team - Email: support@visualwebgui.com
 
New Post 3/3/2011 10:57 AM
  dmcgrail
140 posts
5th Level Poster


Re: Charts drilldown using Visifire 

Visual Web Gui 6.4 with VisiFire 2.x              

                //Create new Data Series
                DataSeries ds = new DataSeries();
                ds.Name = cds.Name;
                ds.RenderAs = DisplayTypes.Pie;
                ds.MarkerScale = 0.8;
               
                //Add Each Label and Valued Pair
                DataPoint dp = new DataPoint();
                dp.AxisLabel = "Test";
                dp.YValue = "60";
                dp.Click += new EventHandler(dataSeries_Click);
                ds.Add(dp);
               

                DataPoint dp = new DataPoint();
                dp.AxisLabel = "Test2";
                dp.YValue = "40";
                dp.Click += new EventHandler(dataSeries_Click);
                ds.Add(dp);


                //Add Data Series to Chart
                objChart.Data.Add(ds);

 

 void dataSeries_Click(object sender, EventArgs e)
{
            DataPoint dp = (DataPoint)sender;

            MessageBox.Show(dp.AxisLabel + ":" + dp.XValue.ToString());
}

 
Previous Previous
 
Next Next
  Forum  Core :: SDK (Vi...  Developing the ...  Charts drilldown using Visifire
Assessment Bottom
.NET Web, Cloud and Mobile application delivery platform | Sitemap | Terms of Use | Privacy Statement | Copyright © 2005-2011 Visual WebGui®       Visual WebGui weblog on ASP.NET Visual WebGui Group on LinkedIn Visual WebGui updates on Twitter Visual WebGui Page on Facebook Visual WebGui YouTube Channel Visual WebGui Platform News RSS