Jump to content
Software FX Community

why image and not activex?


User (Legacy)

Recommended Posts

I'm tryng ChartFX IE edition,

I want to allow to my customers to edito the graph, so

I'm looking for showing toolbars.

Using the tag <object> it's works fine.

Using an ASP page, the graph always show as a static

image!

For example:

<%@ Language=VBScript %>

<HTML>

<HEAD>

</HEAD>

<BODY>

<%

Set Chart1 = Server.CreateObject("ChartFX.WebServer")

' General Settings

Chart1.TypeMask = &H69C0D02&

%>

<%= Chart1.GetHtmlTag(300,300,"Auto","Chart1") %>

</BODY>

</HTML>

Where I'm wrong?

Thank you,

Paolo Capitani

Link to comment
Share on other sites

Calling:

<%Chart1.GetHtmlTag(300,300,"Auto","Chart1") %>

Means that you are leaving the decision on what component to send to the

server component (by specifying Auto), this decision is made based on the

Browser's user-agent, a header sent by every browser on each request.

What browser are you using (Name and Version) ?

Check our the following KB articles in our support site for troubleshooting

tips:

Q1461008. Troubleshooting the ChartFX ActiveX control component

Q1411009. ChartFX displays an image even when GetHtmlTag has been set to

"Auto"

Q1691000. How to ensure auto-detection of the component version on the

client machine

Q1692001. Why Can't I Generate ActiveX Charts in IE6?

--

FP

Software FX, Inc.

Link to comment
Share on other sites

I have changed "auto" with "ActiveX".

Now it works fine.

Thank you!

Paolo Capitani

"SoftwareFX Support" <support@softwarefx.com> wrote in message

news:WoymhxAvCHA.1604@webserver1.softwarefx.com...

> Calling:

>

> <%Chart1.GetHtmlTag(300,300,"Auto","Chart1") %>

>

> Means that you are leaving the decision on what component to send to the

> server component (by specifying Auto), this decision is made based on the

> Browser's user-agent, a header sent by every browser on each request.

>

> What browser are you using (Name and Version) ?

>

> Check our the following KB articles in our support site for

troubleshooting

> tips:

>

>

> Q1461008. Troubleshooting the ChartFX ActiveX control component

>

> Q1411009. ChartFX displays an image even when GetHtmlTag has been set to

> "Auto"

> Q1691000. How to ensure auto-detection of the component version on the

> client machine

>

> Q1692001. Why Can't I Generate ActiveX Charts in IE6?

>

> --

> FP

> Software FX, Inc.

>

>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...