Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Santosh
Contributor III
Contributor III

How can i add more then 6 measures in amcharts extensions

Hi

I am using amcharts extensions and extensions has measures limit that is 6 but i want to add 10 measures.How can i do it ?

Please help me .

4 Replies
Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

Hi,

You can try to change the properties.js. In ligne 15, change 6 to 10 like :

var measures = {

        uses: "measures",

        min: 1,

        max: 10,

        items: amGraph

};

Help users find answers! Don't forget to mark a solution that worked for you!
Santosh
Contributor III
Contributor III
Author

i tried but its not working.

Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

And change also in amCombo.js, line 36 :

This example is for 8 bar :

      qInitialDataFetch: [{
        qWidth: 9,
        qHeight: 1000
      }]

For 10 measures try with qWith: 11

And for qHeight try to find the good number ^^

Help users find answers! Don't forget to mark a solution that worked for you!
Thongzkie
Contributor
Contributor

Tried both. But still measures are limited to 6 when displaying on my graph. My Legends are ok. It is showing 7 of my measures.

I have 7 measures on my data. The last measure is not showing on my graph. 

Thanks in advance.