Highlighting the highest and lowest point in amcharts

后端 未结 2 2017
故里飘歌
故里飘歌 2021-01-27 05:30

Could someone help me on changing the bullet or highlighting the highest and lowest values using amcharts?.

I am using serial chart. The condition given in the function

2条回答
  •  青春惊慌失措
    2021-01-27 06:03

    You are correctly setting the size/type parameters for high/low data points in data.

    However, your graphs are not set up to use those fields.

    To make the graph look for bullet type in data use its bulletField property. For bullet size: bulletSizeField:

    graph.bulletSizeField = "bulletSize";
    graph.bulletField = "markerType";
    
    // ...
    
    graph1.bulletSizeField = "bulletSize";
    graph1.bulletField = "markerType";
    

提交回复
热议问题