Announcement

Collapse
No announcement yet.

Image Error

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Image Error

    In an AB #F,2 bar chart with Ver. 7.91 I am using the function example in the documentation as follows:

    drawImageAbsolute( -5, high(-5), SystemHappyFace, null, Color.red, Image.TOP | Image.ONTOP );

    this results in the following message:

    ReferenceError: SystemHappyFace is not defined.

    Any ideas why the documentation example doesn't work?

    Warren

  • #2
    Warren
    I believe the example is incorrect. Color is not an available parameter and the image should be a string.
    The correct syntax should be as shown below
    Alex

    PHP Code:
    drawImageAbsolute( -5high(-5), "SystemHappyFace"nullImage.TOP Image.ONTOP"TagID"); 

    Comment


    • #3
      Right you are.

      Thanks Alex

      Comment

      Working...
      X