Color coutries/continents with own custom colors in highmaps












0















I have a basic representation of world map using highmaps. If I have two types of maps, countries and continents.



var data = [
['eu', 0],
['oc', 1],
['af', 2],
['as', 3],
['na', 4],
['sa', 5],
];

// Create the chart
Highcharts.mapChart('container', {
chart: {
map: 'custom/world-continents'
},

title: {
text: 'Highmaps basic demo'
},

subtitle: {
text: 'Source map: <a href="http://code.highcharts.com/mapdata/custom/world-continents.js">World continents</a>'
},

mapNavigation: {
enabled: true,
buttonOptions: {
verticalAlign: 'bottom'
}
},

colorAxis: {
min: 0
},

plotOptions: {
map: {
allAreas: false,
}
},

series: [{
data: data,
name: 'Random data',
}]
});


this is how I display maps. What I want to do is color some specific parts of the map with any color I want. For eg. I just want to color Europe and not the rest of the map, or I want to color only France and leave the rest of the map uncolored.
what I did is, changed data array to have objects



data =[{name:"Europe", data:[{code: "eu", color: "#CCCCCC"}]},
{name:"Asia", data:[{code: "as", color: "#4A4444"}]},
{name:"Africa", data:[{code: "af", color: "#AC7070"}]},
{name:"Oceana", data:[{code: "oc", color: "#87AC70"}]},
{name:"North America", data:[{code: "na", color: "#70AC9F"}]},
{name:"South America", data:[{code: "sa", color: "#7094AC"}]}


and changed joinBy:['code'] but it had no effect. Please give me ideas/suggestions on how to achieve this.










share|improve this question



























    0















    I have a basic representation of world map using highmaps. If I have two types of maps, countries and continents.



    var data = [
    ['eu', 0],
    ['oc', 1],
    ['af', 2],
    ['as', 3],
    ['na', 4],
    ['sa', 5],
    ];

    // Create the chart
    Highcharts.mapChart('container', {
    chart: {
    map: 'custom/world-continents'
    },

    title: {
    text: 'Highmaps basic demo'
    },

    subtitle: {
    text: 'Source map: <a href="http://code.highcharts.com/mapdata/custom/world-continents.js">World continents</a>'
    },

    mapNavigation: {
    enabled: true,
    buttonOptions: {
    verticalAlign: 'bottom'
    }
    },

    colorAxis: {
    min: 0
    },

    plotOptions: {
    map: {
    allAreas: false,
    }
    },

    series: [{
    data: data,
    name: 'Random data',
    }]
    });


    this is how I display maps. What I want to do is color some specific parts of the map with any color I want. For eg. I just want to color Europe and not the rest of the map, or I want to color only France and leave the rest of the map uncolored.
    what I did is, changed data array to have objects



    data =[{name:"Europe", data:[{code: "eu", color: "#CCCCCC"}]},
    {name:"Asia", data:[{code: "as", color: "#4A4444"}]},
    {name:"Africa", data:[{code: "af", color: "#AC7070"}]},
    {name:"Oceana", data:[{code: "oc", color: "#87AC70"}]},
    {name:"North America", data:[{code: "na", color: "#70AC9F"}]},
    {name:"South America", data:[{code: "sa", color: "#7094AC"}]}


    and changed joinBy:['code'] but it had no effect. Please give me ideas/suggestions on how to achieve this.










    share|improve this question

























      0












      0








      0








      I have a basic representation of world map using highmaps. If I have two types of maps, countries and continents.



      var data = [
      ['eu', 0],
      ['oc', 1],
      ['af', 2],
      ['as', 3],
      ['na', 4],
      ['sa', 5],
      ];

      // Create the chart
      Highcharts.mapChart('container', {
      chart: {
      map: 'custom/world-continents'
      },

      title: {
      text: 'Highmaps basic demo'
      },

      subtitle: {
      text: 'Source map: <a href="http://code.highcharts.com/mapdata/custom/world-continents.js">World continents</a>'
      },

      mapNavigation: {
      enabled: true,
      buttonOptions: {
      verticalAlign: 'bottom'
      }
      },

      colorAxis: {
      min: 0
      },

      plotOptions: {
      map: {
      allAreas: false,
      }
      },

      series: [{
      data: data,
      name: 'Random data',
      }]
      });


      this is how I display maps. What I want to do is color some specific parts of the map with any color I want. For eg. I just want to color Europe and not the rest of the map, or I want to color only France and leave the rest of the map uncolored.
      what I did is, changed data array to have objects



      data =[{name:"Europe", data:[{code: "eu", color: "#CCCCCC"}]},
      {name:"Asia", data:[{code: "as", color: "#4A4444"}]},
      {name:"Africa", data:[{code: "af", color: "#AC7070"}]},
      {name:"Oceana", data:[{code: "oc", color: "#87AC70"}]},
      {name:"North America", data:[{code: "na", color: "#70AC9F"}]},
      {name:"South America", data:[{code: "sa", color: "#7094AC"}]}


      and changed joinBy:['code'] but it had no effect. Please give me ideas/suggestions on how to achieve this.










      share|improve this question














      I have a basic representation of world map using highmaps. If I have two types of maps, countries and continents.



      var data = [
      ['eu', 0],
      ['oc', 1],
      ['af', 2],
      ['as', 3],
      ['na', 4],
      ['sa', 5],
      ];

      // Create the chart
      Highcharts.mapChart('container', {
      chart: {
      map: 'custom/world-continents'
      },

      title: {
      text: 'Highmaps basic demo'
      },

      subtitle: {
      text: 'Source map: <a href="http://code.highcharts.com/mapdata/custom/world-continents.js">World continents</a>'
      },

      mapNavigation: {
      enabled: true,
      buttonOptions: {
      verticalAlign: 'bottom'
      }
      },

      colorAxis: {
      min: 0
      },

      plotOptions: {
      map: {
      allAreas: false,
      }
      },

      series: [{
      data: data,
      name: 'Random data',
      }]
      });


      this is how I display maps. What I want to do is color some specific parts of the map with any color I want. For eg. I just want to color Europe and not the rest of the map, or I want to color only France and leave the rest of the map uncolored.
      what I did is, changed data array to have objects



      data =[{name:"Europe", data:[{code: "eu", color: "#CCCCCC"}]},
      {name:"Asia", data:[{code: "as", color: "#4A4444"}]},
      {name:"Africa", data:[{code: "af", color: "#AC7070"}]},
      {name:"Oceana", data:[{code: "oc", color: "#87AC70"}]},
      {name:"North America", data:[{code: "na", color: "#70AC9F"}]},
      {name:"South America", data:[{code: "sa", color: "#7094AC"}]}


      and changed joinBy:['code'] but it had no effect. Please give me ideas/suggestions on how to achieve this.







      highcharts react-highcharts






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 22 '18 at 14:06









      Mayank BaiswarMayank Baiswar

      12511




      12511
























          1 Answer
          1






          active

          oldest

          votes


















          1














          You can color a country/continent by replacing for example:



          ['eu', 0],


          With:



          {'hc-key': 'eu', value: 0, color: 'gold'}, 


          Then that country/continent will be colored accordingly. hc-key is the important part of making this work (although not directly specified in the API).



          If you are going to color based on other attributes you can use something like this: Coloring a country in lat-long highmap



          Working JSfiddle example for a continent: https://jsfiddle.net/ewolden/8jxu6vtw/






          share|improve this answer
























          • that did help to much extent. thanks! Now I've got a tricky use case. sometimes, I'll have to show Europe in a different color and the middle east in a different one or east and west europe in different ones. I don't think they are covered in same map type. How to achieve this efficiently? should I use the world map and use countries?

            – Mayank Baiswar
            Nov 22 '18 at 19:23













          • Either you would then need to define (or find if it exists) shapes that fit to your specifications, I.e. East and west Europe, and apply the color to them. Far easier I would say is to make your own arrays for different definitions, then use the code from stackoverflow.com/questions/48862672/… to programatically change color. I.e. check if hc-key is in a custom "West Europe" array, and if it is, color those countries. That is how I would solve it anyway...

            – ewolden
            Nov 23 '18 at 8:41













          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53432745%2fcolor-coutries-continents-with-own-custom-colors-in-highmaps%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          You can color a country/continent by replacing for example:



          ['eu', 0],


          With:



          {'hc-key': 'eu', value: 0, color: 'gold'}, 


          Then that country/continent will be colored accordingly. hc-key is the important part of making this work (although not directly specified in the API).



          If you are going to color based on other attributes you can use something like this: Coloring a country in lat-long highmap



          Working JSfiddle example for a continent: https://jsfiddle.net/ewolden/8jxu6vtw/






          share|improve this answer
























          • that did help to much extent. thanks! Now I've got a tricky use case. sometimes, I'll have to show Europe in a different color and the middle east in a different one or east and west europe in different ones. I don't think they are covered in same map type. How to achieve this efficiently? should I use the world map and use countries?

            – Mayank Baiswar
            Nov 22 '18 at 19:23













          • Either you would then need to define (or find if it exists) shapes that fit to your specifications, I.e. East and west Europe, and apply the color to them. Far easier I would say is to make your own arrays for different definitions, then use the code from stackoverflow.com/questions/48862672/… to programatically change color. I.e. check if hc-key is in a custom "West Europe" array, and if it is, color those countries. That is how I would solve it anyway...

            – ewolden
            Nov 23 '18 at 8:41


















          1














          You can color a country/continent by replacing for example:



          ['eu', 0],


          With:



          {'hc-key': 'eu', value: 0, color: 'gold'}, 


          Then that country/continent will be colored accordingly. hc-key is the important part of making this work (although not directly specified in the API).



          If you are going to color based on other attributes you can use something like this: Coloring a country in lat-long highmap



          Working JSfiddle example for a continent: https://jsfiddle.net/ewolden/8jxu6vtw/






          share|improve this answer
























          • that did help to much extent. thanks! Now I've got a tricky use case. sometimes, I'll have to show Europe in a different color and the middle east in a different one or east and west europe in different ones. I don't think they are covered in same map type. How to achieve this efficiently? should I use the world map and use countries?

            – Mayank Baiswar
            Nov 22 '18 at 19:23













          • Either you would then need to define (or find if it exists) shapes that fit to your specifications, I.e. East and west Europe, and apply the color to them. Far easier I would say is to make your own arrays for different definitions, then use the code from stackoverflow.com/questions/48862672/… to programatically change color. I.e. check if hc-key is in a custom "West Europe" array, and if it is, color those countries. That is how I would solve it anyway...

            – ewolden
            Nov 23 '18 at 8:41
















          1












          1








          1







          You can color a country/continent by replacing for example:



          ['eu', 0],


          With:



          {'hc-key': 'eu', value: 0, color: 'gold'}, 


          Then that country/continent will be colored accordingly. hc-key is the important part of making this work (although not directly specified in the API).



          If you are going to color based on other attributes you can use something like this: Coloring a country in lat-long highmap



          Working JSfiddle example for a continent: https://jsfiddle.net/ewolden/8jxu6vtw/






          share|improve this answer













          You can color a country/continent by replacing for example:



          ['eu', 0],


          With:



          {'hc-key': 'eu', value: 0, color: 'gold'}, 


          Then that country/continent will be colored accordingly. hc-key is the important part of making this work (although not directly specified in the API).



          If you are going to color based on other attributes you can use something like this: Coloring a country in lat-long highmap



          Working JSfiddle example for a continent: https://jsfiddle.net/ewolden/8jxu6vtw/







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 22 '18 at 14:15









          ewoldenewolden

          4,21631125




          4,21631125













          • that did help to much extent. thanks! Now I've got a tricky use case. sometimes, I'll have to show Europe in a different color and the middle east in a different one or east and west europe in different ones. I don't think they are covered in same map type. How to achieve this efficiently? should I use the world map and use countries?

            – Mayank Baiswar
            Nov 22 '18 at 19:23













          • Either you would then need to define (or find if it exists) shapes that fit to your specifications, I.e. East and west Europe, and apply the color to them. Far easier I would say is to make your own arrays for different definitions, then use the code from stackoverflow.com/questions/48862672/… to programatically change color. I.e. check if hc-key is in a custom "West Europe" array, and if it is, color those countries. That is how I would solve it anyway...

            – ewolden
            Nov 23 '18 at 8:41





















          • that did help to much extent. thanks! Now I've got a tricky use case. sometimes, I'll have to show Europe in a different color and the middle east in a different one or east and west europe in different ones. I don't think they are covered in same map type. How to achieve this efficiently? should I use the world map and use countries?

            – Mayank Baiswar
            Nov 22 '18 at 19:23













          • Either you would then need to define (or find if it exists) shapes that fit to your specifications, I.e. East and west Europe, and apply the color to them. Far easier I would say is to make your own arrays for different definitions, then use the code from stackoverflow.com/questions/48862672/… to programatically change color. I.e. check if hc-key is in a custom "West Europe" array, and if it is, color those countries. That is how I would solve it anyway...

            – ewolden
            Nov 23 '18 at 8:41



















          that did help to much extent. thanks! Now I've got a tricky use case. sometimes, I'll have to show Europe in a different color and the middle east in a different one or east and west europe in different ones. I don't think they are covered in same map type. How to achieve this efficiently? should I use the world map and use countries?

          – Mayank Baiswar
          Nov 22 '18 at 19:23







          that did help to much extent. thanks! Now I've got a tricky use case. sometimes, I'll have to show Europe in a different color and the middle east in a different one or east and west europe in different ones. I don't think they are covered in same map type. How to achieve this efficiently? should I use the world map and use countries?

          – Mayank Baiswar
          Nov 22 '18 at 19:23















          Either you would then need to define (or find if it exists) shapes that fit to your specifications, I.e. East and west Europe, and apply the color to them. Far easier I would say is to make your own arrays for different definitions, then use the code from stackoverflow.com/questions/48862672/… to programatically change color. I.e. check if hc-key is in a custom "West Europe" array, and if it is, color those countries. That is how I would solve it anyway...

          – ewolden
          Nov 23 '18 at 8:41







          Either you would then need to define (or find if it exists) shapes that fit to your specifications, I.e. East and west Europe, and apply the color to them. Far easier I would say is to make your own arrays for different definitions, then use the code from stackoverflow.com/questions/48862672/… to programatically change color. I.e. check if hc-key is in a custom "West Europe" array, and if it is, color those countries. That is how I would solve it anyway...

          – ewolden
          Nov 23 '18 at 8:41




















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53432745%2fcolor-coutries-continents-with-own-custom-colors-in-highmaps%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          404 Error Contact Form 7 ajax form submitting

          How to know if a Active Directory user can login interactively

          TypeError: fit_transform() missing 1 required positional argument: 'X'