avocado.src.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /**
  2. * @license Highcharts JS v7.0.2 (2019-01-17)
  3. *
  4. * (c) 2009-2019 Highsoft AS
  5. *
  6. * License: www.highcharts.com/license
  7. */
  8. 'use strict';
  9. (function (factory) {
  10. if (typeof module === 'object' && module.exports) {
  11. factory['default'] = factory;
  12. module.exports = factory;
  13. } else if (typeof define === 'function' && define.amd) {
  14. define(function () {
  15. return factory;
  16. });
  17. } else {
  18. factory(typeof Highcharts !== 'undefined' ? Highcharts : undefined);
  19. }
  20. }(function (Highcharts) {
  21. (function (Highcharts) {
  22. /**
  23. * (c) 2010-2017 Highsoft AS
  24. *
  25. * License: www.highcharts.com/license
  26. *
  27. * Accessible high-contrast theme for Highcharts. Considers colorblindness and
  28. * monochrome rendering.
  29. * @author Øystein Moseng
  30. */
  31. Highcharts.theme = {
  32. colors: ['#F3E796', '#95C471', '#35729E', '#251735'],
  33. colorAxis: {
  34. maxColor: '#05426E',
  35. minColor: '#F3E796'
  36. },
  37. plotOptions: {
  38. map: {
  39. nullColor: '#fcfefe'
  40. }
  41. },
  42. navigator: {
  43. maskFill: 'rgba(170, 205, 170, 0.5)',
  44. series: {
  45. color: '#95C471',
  46. lineColor: '#35729E'
  47. }
  48. }
  49. };
  50. // Apply the theme
  51. Highcharts.setOptions(Highcharts.theme);
  52. }(Highcharts));
  53. return (function () {
  54. }());
  55. }));