Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
30
Do not Generate Image in runtime ultrachart
posted

Hello,

I am using igchar:ultrachart, i can generate the chart successfully, but i see than it generates an image in runtime, i want generate the chart in memory i do not really want to generate the image, that is possible?

Kindly regards.

  • 30
    Offline posted

    Hello,

    Actually i am using DeploymentScenario-Scenario="Session" and ImagePipePageName="ImagePipe.aspx", all this is configured in igchart:ultrachart,  i have too the new file ImagePipe.aspx with the control  SecureImagePipe.

    My ImagePipe.aspx it's look 

    <%@ Page Language="vb" AutoEventWireup="false" CodeBehind="ImagePipe.aspx.vb" Inherits=".SecureImagePipe" %>

    <%@ Register Assembly="Infragistics4.WebUI.UltraWebChart.v16.1, Version=16.1.20161.1000, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" Namespace="Infragistics.WebUI.UltraWebChart" TagPrefix="igchart" %>

    <!DOCTYPE html>

    <html xmlns="">www.w3.org/.../xhtml">
    <head runat="server">
    <title></title>
    </head>
    <body>
    <igchart:SecureImagePipe ID="SecureImagePipe1" runat="server" ImageType="Jpeg">
    </igchart:SecureImagePipe>

    </body>
    </html>,

    But when run the application the chart is not displaying, 

    Any Help, i'll appreciate it.

  • 17590
    Offline posted in reply to CreativeTime Solutions

    Hello Creative Time Solutions,

    Thank you for posting in our community.

    WebChart can be rendered in three ways, depending on the setting of the DeploymentScenario. RenderingType property.

    The following is a list of the three image rendering types, along with some considerations concerning that rendering type.

    Image - This rendering type is raster-based. Resizing a generated image will reduce the quality of that image. Changing the size of the control on the server will increase the size and quality of the image and the size of the generated file will also increase. Images can easily be copied from web pages, and can conveniently be embedded in many document formats such as Microsoft Word.

    • Flash (SWF) - This rendering type is vector-based. If the image size is changed, it will not change the quality of the appearance. Flash can be printed at high quality. SWF is a binary format with excellent compression to minimize file size.
    • SWF is a binary format with excellent compression to minimize file size.The majority of users on the web do have Macromedia Flash Player installed. Flash Player is pre-installed in several web browsers and on many computers. It is included in Windows XP and Apple Macintosh operating systems, Netscape Navigator, and America Online.
    • SVG (Scalable Vector Graphics) - This rendering type is vector-based. If the image size is changed, it will not change the quality of the appearance. SVG can be printed at high quality. Text in SVG can be selected and copied into other documents.Most users do not have an SVG viewer installed at this time. However, it is possible to embed a script on a page to automatically prompt the user to install an SVG viewer if one is not already installed. For an example of this, see the Rendering Types sample in the Ultimate UI for ASP.NET Samples Browser.

    More about chart rendering could be found here.

    Please let me know if I can be of any further assistance.