Arindam
Members-
Content count
730 -
Joined
-
Last visited
Everything posted by Arindam
-
IE7 Popup blocker blocks hyperlinks created with 'n-' option
Arindam replied to Arindam's topic in General usage
Hi, I am afraid it is not possible as of now. -
ScrollColumn2D.swf (Backround color setting)
Arindam replied to sivatech001's topic in Suggestions & Requests
Hi, Could you please explain in details what you want? your word: It displays only one color for all row Are you saying for background or Column Color? -
IE7 Popup blocker blocks hyperlinks created with 'n-' option
Arindam replied to Arindam's topic in General usage
Hi, Can you try Ctrl+click once? -
DragColumn2D ang button values.
Arindam replied to FusionCharts Support's topic in FusionCharts and ASP.NET
Hi Could you please use <chart> attribute - restoreBtnTitle='Your New Title' with in Chart XML? i.e <chart ...... restoreBtnTitle='Your New Title' ...... > -
ScrollColumn2D.swf (Backround color setting)
Arindam replied to sivatech001's topic in Suggestions & Requests
Hi, Please use the <chart> attributes - bgColor='f7f2f7,f7f2f7' bgalpha='100,100' . i.e <chart ..... bgColor='f7f2f7,f7f2f7' bgalpha='100,100' ... > bgColor Color This attribute sets the background color for the chart. You can set any hex color code as the value of this attribute. To specify a gradient as background color, separate the hex color codes of each color in the gradient using comma. Example: FF5904,FFFFFF. Remember to remove # and any spaces in between. See the gradient specification page for more details. bgAlpha Number 0-100 Sets the alpha (transparency) for the background. If you've opted for gradient background, you need to set a list of alpha(s) separated by comma. See the gradient specification page for more details. -
Hi, For multiple charts you have to take different Literal control with in design page say literal1, literal2, literal3 After that call different fusionchart render function with in Page_load event Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Literal1.Text = GetMonthlySalesChartHtml() Literal2.Text = Chart1Html() Literal3.Text = Chart2Html() End Sub Now create 2 other function Chart1Html() and Chart2Html() Public Function Chart1Html () As String ' 'Your code here goes here ' Return FusionCharts.RenderChartHTML("charts/Column3D.swf", "", sXML.ToString, "myNext", "600", "300", False) End Function Public Function Chart2Html () As String ' 'Your code here goes here ' Return FusionCharts.RenderChartHTML("charts/Column3D.swf", "", sXML.ToString, "myNext1", "600", "300", False) End Function Note when you are rendering fusioncharts that time chartID must be deferent.
-
How to use link in element of Widget AngularGauge.swf
Arindam replied to Arindam's topic in Using FusionWidgets XT
Hi, Could you please use link attribute? i.e <dial value='6820520.14' borderAlpha='0' bgColor='000000' baseWidth='10' topWidth='0' radius='135' link='http://google.com' /> -
Hi, Please use <chart> attribute animation='0' with in XML. i.e <chart ..... animation='0' ...... >
-
Hi, Could you please email at [email protected] ?
-
ScrollArea2D - make it so the scrollbar automatically scrolls to the right?
Arindam replied to ultranerds's topic in General usage
Hi, Please use <chart> attribute - scrollToEnd='1' . i.e <chart ......... scrollToEnd='1' ...... > scrollToEnd Boolean 0/1 When the chart renders, you can opt to scroll to the end of the chart (to show data at extreme right) by setting this attribute as 1. -
Hi, Could you please follow this forum post? http://www.fusioncharts.com/forum/FindPost10101.aspx
-
Hi, Could you please see our Blue print Application? http://www.fusioncharts.com/downloaddone.asp
-
AngularGauge.swf allignment-problem
Arindam replied to sivatech001's topic in Suggestions & Requests
Hi, Could you please try with majorTMNumber="8" ? i.e <chart ......... majorTMNumber="6" ....... > <chart ......... majorTMNumber="8" ....... > -
Hi, Could you please provide us XML and chart swf file name and version of the chat?
-
How to use "Blinking Star image" in Maps
Arindam replied to Arindam's topic in Suggestions & Requests
Hi, I am afraid animated .gif charts are not possible as of now. You can replace animated .gif with swf file. Animated SWF is supported. i.e <shape id='Icon' type='image' URL='Resources/file.swf' /> -
Hi, Scroll is applicable only for ScrollColumn2D.swf ScrollLine2D.swf ScrollArea2D.swf ScrollStackedColumn2D.swf ScrollCombi2D.swf ScrollCombiDY2D.swf Please see this link. http://www.fusioncharts.com/docs/Contents/ChartSS/ScrollColumn2D.html
-
Hi, Are you rendering this chart by javascript dataURL? If so Could please use relative path with in dataURL? please do not use full path. Please provide us your source code. chartObj.setDataURL("Charts/Data.xml");
-
Hi, SSGrid is a single series grid. It
-
FusionCharts and SQL server 2005 rReporting Services
Arindam replied to Arindam's topic in General usage
Hi, see to this http://www.fusioncharts.com/forum/FindPost10061.aspx -
Chart always on the top and block drop down menu
Arindam replied to davidtso's topic in FusionCharts and PHP
Hi, are you using FusionCharts.php file as include??? then do this Function Specifications in FusionCharts.php file renderChart($chartSWF, $strURL, $strXML, $chartId, $chartWidth, $chartHeight, $debugMode=false, $registerWithJS=false, $setTransparent="") renderChartHTML($chartSWF, $strURL, $strXML, $chartId, $chartWidth, $chartHeight, $debugMode=false,$registerWithJS=false, $setTransparent="") use: <?php //Create the chart - Column 3D Chart with data from Data/Data.xml echo renderChart("../../FusionCharts/Column3D.swf", "Data/Data.xml", "", "myFirst", 600, 300, false, false, true); ?> -
Hi, yes you are right.
-
2d graph and 3d graph display description down
Arindam replied to sahil.fun's topic in FusionCharts and PHP
Hi, Same PHP code please copy render charts code and change the swf file to ssgrid.swf. -
Hi, Could you please provide us Charts width , height and Your chart XML?
-
Chart always on the top and block drop down menu
Arindam replied to davidtso's topic in FusionCharts and PHP
Hi, Could please use swf wmode to Opaque? -
Hi, Could you please use this example? after extract the rar file please create a web share of FusionMaps_drill folder. after that run this from localhost. Could you please add all Maps swf with in Maps folder. http://localhost/FusionMaps_drill/ASP/DB_Drill/Index.asp