Jump to content
Software FX Community

binukjohn

Members
  • Posts

    30
  • Joined

  • Last visited

Posts posted by binukjohn

  1. 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?

     

     

  2. 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?

  3. 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.

     

  4. 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?

  5. 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?

  6. 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?

  7. 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?

  8. 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?

  9. 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?

  10. 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

     }

  11. 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

     }

  12. 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?

  13. 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..

×
×
  • Create New...