Thanks!
~~Daniel
Posted 10 December 2009 - 06:19 AM
Posted 10 December 2009 - 12:38 PM
Posted 11 December 2009 - 04:25 AM
Hi Daniel,
Can you please tell me whether you are working with JavaScript or Silverlight managed code?
Regards,
Somnath
Posted 11 December 2009 - 06:10 AM
Posted 12 December 2009 - 07:41 AM
... Please note that if you want the table to be shown inside Silverlight content you have to write your own Silverlight application using Visifire chart. You can use Visifire to display the chart and draw the table inside Silverlight. Also you can achieve the same using JavaScript by placing a HTML table element under the Visifire chart.
Regards,
Somnath
Posted 12 December 2009 - 12:47 PM
Posted 15 December 2009 - 11:31 AM
Hi Daniel,
You can display the data-table just below the chart. The width of the y-axis and width of the x-axis will be available soon after the chart is rendered. You can use the Rendered event of the chart. So it will be easy to create a table and position it just below the chart. Please note that if you want the table to be shown inside Silverlight content you have to write your own Silverlight application using Visifire chart. You can use Visifire to display the chart and draw the table inside Silverlight. Also you can achieve the same using JavaScript by placing a HTML table element under the Visifire chart.
Regards,
Somnath
Posted 15 December 2009 - 12:20 PM
void chart_Rendered(object sender, EventArgs e)
{
Double width = chart.AxesY[0].Width;
}
Regards,
Vivek
Team Visifire
Posted 17 December 2009 - 06:27 AM
chart = new Chart();
chart.Rendered += new EventHandler(Chart_Rendered);
Axis newAxis = new Axis();
newAxis.Width = 1000;
chart.AxesY.Add(newAxis);
Posted 13 February 2012 - 04:19 AM
Posted 14 February 2012 - 12:36 PM
Regards,
Vivek
Team Visifire
0 members, 0 guests, 0 anonymous users