@spteck/fluentui-react-charts 1.0.8 → 1.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -791,6 +791,7 @@ var getFluentPalette = function getFluentPalette(_theme) {
791
791
  };
792
792
  /**
793
793
  * Smart Fluent tooltip generator with chart-type awareness.
794
+ * Optimized for fast performance with reduced animation delays.
794
795
  */
795
796
  function createFluentTooltip(theme) {
796
797
  var fontFamily = theme.fontFamilyBase;
@@ -891,6 +892,10 @@ function createFluentTooltip(theme) {
891
892
  family: fontFamily,
892
893
  size: fontSize
893
894
  },
895
+ // Performance optimizations for faster tooltip display
896
+ animation: {
897
+ duration: 0
898
+ },
894
899
  callbacks: callbacks
895
900
  };
896
901
  }