230
Views
3
Comments
Solved
Line Chart add points on each different point
Question

Hi All,

I'm trying to display a point (literally as you can see in the below image, the points/dots are in red) into the chart on each different set of data. Is there a way to do this? Also i need to change the color of the line but i did not find like a property to do this.



Thanks in advance, regards.

2026-01-19 11-49-41
Maycon Silva
Solution

Hi Reynaldo,


On Preparation use the AdvancedFormat_Init action from Charts to define HighchartsJSON. Paste de bellow code in its editor. 

After that, use the output parameter of AdvancedFormat_Init in AdvancedFormat of your chart in the page.


SyntaxEditor Code Snippet

"plotOptions: {
    series: {
        marker: {
            enabled: true
        }
    }
}"


I hope helped you!


Regards,


Maycon Silva

2019-04-11 03-16-59
Reynaldo Merino

Maycon Silva wrote:

Hi Reynaldo,


On Preparation use the AdvancedFormat_Init action from Charts to define HighchartsJSON. Paste de bellow code in its editor. 

After that, use the output parameter of AdvancedFormat_Init in AdvancedFormat of your chart in the page.


SyntaxEditor Code Snippet

"plotOptions: {
    series: {
        marker: {
            enabled: true
        }
    }
}"


I hope helped you!


Regards,


Maycon Silva

Awesome, this works perfectly!! Thanks for your help.


2026-01-19 11-49-41
Maycon Silva

Reynaldo,


If you have questions, take a look at HighCharts Documentation. Especially plotOptions.line.marker.


Regards,

Maycon Silva

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.