AreasSettings is a class which defines the default settings for all MapArea objects.

Example

var map = AmCharts.makeChart("mapdiv",{
  ...
  "areasSettings": {
    "alpha": 0.5
  }
});

Properties

PropertyTypeDefaultDescription
accessibleLabelString[[title]] [[value]] [[description]]Text which screen readers will read if user rolls-over the area or sets focus using tab key (this is possible only if tabIndex property of AreasSettings or individual area is set to some number). Text is added as aria-label tag. Note - not all screen readers and browsers support this.
adjustOutlineThicknessBooleantrueBy default the map will adjust area outlines when zooming in/out so that they will always stay of the same width. This however loads CPU quite a lot. If you set it to false, outlines will scale together with the areas.
alphaNumber1Opacity of areas.
autoZoomBooleanfalseSpecifies if the areas should be zoomed-in when user clicks on them, event if zoom properties are not set.
balloonTextString[[title]]Text which is displayed in a roll-over balloon. You can use the following tags: [[title]], [[description]], [[value]] and [[percent]].

To disable the balloons, set it to an empty string.
bringForwardOnHoverBooleantrueSpecifies if the area should change it's z-index to the most top when user hovers it.
colorColor#FFCC00Color of the areas.
colorSolidColor#990000Color of area with highest value. Colors for areas with values less then highest will be colored with intermediate colors between color and colorSolid. Use colorSteps property of AmMap to change the number of intermediate colors.
descriptionWindowBottomNumberDistance from the bottom side of map container to the description window. In case it is not set (also if descriptionWindowTop is not set), window will be placed near the mouse pointer.
descriptionWindowHeightNumberHeight of a description window.
descriptionWindowLeftNumberDistance from the left side of map container to the description window. In case it is not set (also if descriptionWindowRight is not set), window will be placed near the mouse pointer.
descriptionWindowRightNumberDistance from the right side of map container to the description window. In case it is not set (also if descriptionWindowLeft is not set), window will be placed near the mouse pointer.
descriptionWindowTopNumberDistance from the top side of map container to the description window. In case it is not set (also if descriptionWindowBottom is not set), window will be placed near the mouse pointer.
descriptionWindowWidthNumber250Width of a description window.
outlineAlphaNumber1Opacity of area's outline.
outlineColorColor#FFFFFFColor of area's outline.
outlineThicknessNumber1Thickness of area's outline.
rollOverColorColorColor of area when user rolls-over it. You can set this to "undefined" (no quotes) to make the area retain it's original color when hovered.
rollOverOutlineAlphaNumberOpacity of rolled-over area outline.
rollOverOutlineColorColor#CC0000Color of area's outline when user rolls-over it.
rollOverOutlineThicknessNumber1Thickness of rolled-over area outline.
selectableBooleanfalseSpecifies if areas are selectable, even no zoom/description/url is set. You can also override this setting for each individual area individually.
selectedColorColor#CC0000Color of area which is currently selected. You can set this to "undefined" (no quotes) to make the area retain it's original color when selected.
selectedOutlineColorColorColor of selected area's outline.
selectedOutlineThicknessNumberThickness of selected area outline.
tabIndexNumberIn case you set it to some number, the map will set focus on areas (one by one) when user clicks tab key. When a focus is set, screen readers like NVDA Screen reader will read label which is set using accessibleLabel property of AreasSettings or individual area. If area is clickable, pressing Enter/Return while focus is set will select the area. Note, not all browsers and readers support this.
unlistedAreasAlphaNumber1Opacity of all areas which are in the map svg file, but not listed as areas in DataSet.
unlistedAreasColorColor#DDDDDDColor of all areas which are in the map svg file, but not listed as areas in DataSet.
unlistedAreasOutlineAlphaNumber1Opacity of all areas' outline which are in the map svg file, but not listed as areas in DataSet.
unlistedAreasOutlineColorColor#FFFFFFColor of all areas' outline which are in the map svg file, but not listed as areas in DataSet.

Methods

AreasSettings class does not have any methods.

Events

AreasSettings class does not have any events.