• Resolved stefanocps

    (@stefanocps)


    Hello i am tryinh to build a simple chart where on X i have date, on y a value and in the chart ineed to show the point that indicated the event that generates

    DATE,AMOUNT,TITLE
    string,number,string
    1/1/2022,1000, caravaggio

    like this

    but i get error

    It seems i can only have number a part of 1 string

    How do i do that?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter stefanocps

    (@stefanocps)

    i explain it better what i want to do:

    i am trying to do a simple chart that has:
    on axis X a DATE (july 2022.,october 2022..etc)
    on axis Y an amount (1500,2200..ecc)
    then i want to have in the graph a point where the the x and y value meet, that when i hover show me a text (the items that hase generated that amount in that date)
    so july 2022 – 1500 –>text1
    october 2022 – 2200 __< text2

    I can’t get to do it

    i am not able to insert the text1, text2…
    these are example data:

    PERIODO,VALORE,EVENT
    date,number,string
    1/7/2022 1500 text1
    1/10/2022 2200 text2

    how can i do?
    thanks

    Plugin Support Stefan Cotitosu

    (@stefancotitosu)

    Hi @stefanocps,

    Thank you for using Visualizer.

    To create dots on the line chart, you can use the manual configuration field in the chart settings and add the following code there.

    { "series": { "0": {
     "pointShape": "circle",
          "pointSize": 5
    }
    } 
    }

    The tooltip can’t have custom text specified in the source file because only the series are specified there and all of them should be of the same type. Therefore, a string column for the tooltip can’t be near a series of type number.

    Best regards,

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘only 1 strings/date column?’ is closed to new replies.