Jump to content
Software FX Community

binukjohn

Members
  • Posts

    30
  • Joined

  • Last visited

Everything posted by binukjohn

  1. Thanks for the response. I dont see a ChartFX.Internet.config file in my bin folder. Can I create one and add this configuration? I am using chartfx for .NET 6.2
  2. My chartfx .net client control is not working if I access it from a gatewayed server. The problem is that my the gateway needs a fully qualified name for the component. In this case, chartfx has only the relative path in object tag for class ID and path..See below <object id="Chart1" classid="/chartfx62/download/ChartFX.MainClient.DLL#SoftwareFX.ChartFX.Internet.MainClient" WIDTH="890px" HEIGHT="580px" > <PARAM NAME="DataCookieId" VALUE="dj34ho45qvdudv55tme4eyag"> <PARAM NAME="DataPath" VALUE="/chartfx62/temp/CFT1103_02104128655.chw"> <PARAM NAME="AssemblyTarget" VALUE="ChartFX.Internet.Client, Version=6.2.2839.26852, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx" > <PARAM NAME="ClassTarget" VALUE="SoftwareFX.ChartFX.Internet.Client.Chart" > </object> Instead of classid="/chartfx62/download/ChartFX.MainClient.DLL", I need classid=http://localhost/chartfx62/download/ChartFX.MainClient.DLL I see that there is a registry setting named "RequiredRoot" under HKEY_LOCAL_MACHINE\SOFTWARE\Software FX, Inc.\ChartFX for .NET\6.2\Server This registry setting will allow me to provide fully qualified name for classid. But it is not allowing me to set host names in this registry key. Is there any other way to provide fully qualified name for classid?
  3. Thanks a lot for your feedback. However, I have 2 websites running on the same server. One is gatewayed and other is normal. The chart from normal website is working fine. So that rules out possibilities of client configuration. The problem is while accessing chartfx froma gatewayed server
  4. Hello.. I am trying to render chart as .NET Client Control. I get a blank screen with a runtime html error. Error says "object doesnt support this property or method". We have 2 servers. The problem is reported in the server which has a gateway. On further analysis, i observed that Chart1 object is giving the problem. Could it be because of the gateway? Is it possible to modify the URL of the classid?
  5. Thanks. I just tried enabling scrolling by setting Chart1.Scrollable = True. However, I dont see any difference. The bubbles are still shrinking
  6. Thanks for the suggestion. However, this is not what I meant. I dont want all bubbles to be of the same size. The bubble size is controlled by actual data. The problem is that as the number of bubbles increases, the size if reducing for all bubbles. eg : if there are 10 bubbles. Suppose A and B are 2 of those bubbles.Data value of A= 3 and Data value of B=5. Now , in my chart, bubble A is smaller that bubble B. Both A and B are perfectly visible in teh chart. Now, if the number of bubbles = 100. Suppose A and B are 2 of those bubbles.Data value of A= 3 and Data value of B=5 same as above. This time also A is smaller than B. But the overall size of A and B has reduced. A looks like a tiny dot in my chart. I dont want this behavior.
  7. Hi, I am using a bubble chart. I see that as the number of bubbles in the chart increases, the bubbles are shrinking. As a result, if there are more than 100 bubbles in the chart, each bubble becomes a tiny dot.I dont want this behavior. Does anyone know how to keep the bubble size static?
  8. Hi, If the chart is rendered as an activex control, the data editor is visible on right clicking teh chart area. This allows users to midufy data. How to disable this option?
  9. That may not be true always...there can be duplicate values in the same series. eg: if my x,y values for the series are like this X Y 1 2 2 2 1 2 3 1 3 1
  10. I am plotting a bubble chart. My problem is that there are bubbles which have the same coordinates (x,y). Hence, only one bubble is visible and the others with same value are hidden behind. Is there any way in Chartfx to make the other bubbles visible? If that is not possible, is it possible to offset the center of each bubble by a small degree so that it becomes visible?
  11. OK..I got it now..I have to set HTMLTAG=".NET". But problem now is that if it is ".NET", I am losing the link and target url settings.. I cannot click on a bubble and redirect to new pages. Is this possible?
  12. Thanks for the feedback...Unfortunately, Chart1.ToolBar doesnt seem to be having a visible property. I am working on Chartfx6.2 with ASP.NET. Is this property available? I could see Chart1.ToolBarObj.Visible property. Is it the same? I tried setting it to true. But that too is not working. Is there anything else I need to set? like htmltag or something?
  13. Thanks.. I am unable to see the toolbar options for the chart. How do I view this? Are you talking about internet explorer toolbar? That is not what I want..I read in your support groups that Chartfx has pribt options for webpages also..Can you please help?
  14. How do I invoke Printer.Print() from clientside javascript? How to access the chart object in the client? I know that Print() funtion is in ChartFX.Internet.Client.dll. Will this DLL be downloaded to the client by the browser automatically? I tried setting htmltag=".NET". But it doesnt seem to be working?
  15. I am using Chartfx62 in .NET web forms..Currently I am seeing the chart in my browser as png images saved on my local drive. <td align="left" colspan="2" style="height: 310px"> <IMG SRC="/chartfx62/temp/CFT0303_0217403C4D3.png" WIDTH="800" HEIGHT="400" > </td> 1)I want to print the chart from browser. What are the options available? Do u have samples? I tried searching ur API but did not find any.appreciate if someone could copy paste code here. 2) If the chart is rendered as images, there will be huge demand on client disk space. Is there a way to delete the images programmatically? 3) What are the other options of rendering other than image?
  16. HI, In my bubble chart, I have bubbles which are of the same size and at the same point. Hence these bubbles overlap and I am able to see only one of them. Hence the drilldown features do not work. Is there a way to identify the bubbles which are hidden?
  17. I am plotting a bubble chart in ASP.NET. I am using data driven X,Y and size values. In some cases, these values will be zero. Inn such cases, the size of the bubble is zero.Hence the bubble is not plotting. I want the bubble to plot in such cases also. Is there a way I can increae the size of the bubble(maybe add 1 to the size) using code?
  18. Thanks..I was not setting bordereffect to None..It is working now.. I have another question...If 2 bubbled of same size gets plotted on at the same point, how to have both their tags visible? I want to set different properties for each of these bubbles..And user should be able to click on each of the bubble even though they ar eplotted on the same point..Is it possible?
  19. I am trying to set bordereffect and border color property for each bubble in the bubble chart. However, setting the border properties doesnt seem to be working..setting of color is working fine..Here is what I did. for (int i = 0; i < Chart1.NValues; i++) { Chart1.Point.Border = true; //not working Chart1.Point.BorderEffect = BorderEffect.Dark; //not working Chart1.Point.BorderColor = Color.Black; //not working Chart1.Point.Color = Color.Black; //This seems to be working }
  20. I am trying to set bordereffect and border color property for each bubble in the bubble chart. However, setting the border properties doesnt seem to be working..setting of color is working fine..Here is what I did. for (int i = 0; i < Chart1.NValues; i++) { Chart1.Point.Border = true; //not working Chart1.Point.BorderEffect = BorderEffect.Dark; //not working Chart1.Point.BorderColor = Color.Black; //not working Chart1.Point.Color = Color.Black; //This seems to be working }
  21. Thanks..I think I was looking for conditional attributes...Could you provide me with some samples like setting color or changing border style/thickness of bubble..?
  22. How to set the zoom property of bubble chart. SHould I change htmltag setting to have zoom enabled?
  23. Hi , I am trying to develop a bubble chart. Few of the requirements are 1)Set color of the bubble based on the size. 2)When several bubbles plot on the same quadrant, the bubbles need to self stagger and then float to the front when cursor selects a bubble. 3) Customize the layout of the each bubble based on its value(point tag) Can these be done?
  24. Hi , I have a bubble chart using ASP.NET. I need to add some client side features to it. eg: When several bubbles plot on the same quadrant, the bubbles need to self stagger and then float to the front when cursor selects a bubble. What are the options I have? Any help would be greatly appreciated.. Thanks..
  25. Hey..I think this was exactly what I was looking for.. Thanks a lot. I may have more questions later :-)
×
×
  • Create New...