Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions highcharts/highcharts/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -568,6 +568,7 @@ class Hover(CommonObject):
"marker": (Marker, dict),
"radius": int,
"radiusPlus": int,
"color": (ColorObject, basestring, dict),
}

class States(CommonObject):
Expand Down
5 changes: 4 additions & 1 deletion highcharts/highcharts/highcharts.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def __init__(self, **kwargs):
# Bind Base Classes to self
self.options = {
"chart": ChartOptions(),
"colorAxis" : ColorAxisOptions(),
#"colorAxis" : ColorAxisOptions(),
"colors": ColorsOptions(),
"credits": CreditsOptions(),
#"data": #NotImplemented
Expand Down Expand Up @@ -270,6 +270,9 @@ def set_options(self, option_type, option_dict, force_options=False):
self.options[option_type].update_dict(**option_dict)
elif option_type in ["global" , "lang"]: #Highcharts.setOptions:
self.setOptions[option_type].update_dict(**option_dict)
elif option_type == 'colorAxis':
self.options.update({'colorAxis': ColorAxisOptions()})
self.options[option_type].update_dict(**option_dict)
else:
self.options[option_type].update_dict(**option_dict)

Expand Down