stper

Members
  • Content count

    3
  • Joined

  • Last visited

About stper

  • Rank
    Forum Newbie
  1. Timeseries with trendlines

    Hi again, I found for the color of the line, it is the "stroke" value that was missing. However, I still did not found how to display the values all the time and not only when hovering the reference line/zone. Thanks,
  2. Timeseries with trendlines

    Hi Akash, Indeed thanks a lot for your help. I am now struggeling to color the line. Dashed is ok, width is ok but I am not able to color the line itseld. I manage to color the dot at the end of the line but the line keeps being in red. Would you know why? And is there a way to keep the label shown on the right of the chart as well? Here is my code: yaxis[0].referenceLine.push({ label: "Max", value: max.value, style: { marker: { "stroke-dasharray": "4 - 2", "stroke-width": 5, fill: "#17c01f", }, }, });
  3. Hi everyone, I am new to fusionChart and am taking back a developpement done by one of my colleague. He previsouly used a mspline type of chart which I transformed into a timeserie chart. In his previous chart, he was using trendlines which were shown successfully on the graph. I have not changed the code of the generation of the trendlines but they do not appear in my timeserie chart anymore. Would anyone know why? Maybe trendlines are not compatible with timeseries charts? Thanks for your help.