@@ -191,7 +191,6 @@ exports.loneHover = function loneHover(hoverItems, opts) {
191191 fontColor : hoverItem . fontColor ,
192192 fontWeight : hoverItem . fontWeight ,
193193 fontStyle : hoverItem . fontStyle ,
194- fontStretch : hoverItem . fontStretch ,
195194 fontVariant : hoverItem . fontVariant ,
196195 nameLength : hoverItem . nameLength ,
197196 textAlign : hoverItem . textAlign ,
@@ -931,7 +930,6 @@ function createHoverText(hoverData, opts) {
931930 var fontSize = opts . fontSize || constants . HOVERFONTSIZE ;
932931 var fontWeight = opts . fontWeight || 'normal' ;
933932 var fontStyle = opts . fontStyle || 'normal' ;
934- var fontStretch = opts . fontStretch || 'normal' ;
935933 var fontVariant = opts . fontVariant || 'normal' ;
936934
937935 var c0 = hoverData [ 0 ] ;
@@ -1016,7 +1014,6 @@ function createHoverText(hoverData, opts) {
10161014 var commonLabelFont = {
10171015 weight : commonLabelOpts . font . weight || fontWeight ,
10181016 style : commonLabelOpts . font . style || fontStyle ,
1019- stretch : commonLabelOpts . font . stretch || fontStretch ,
10201017 variant : commonLabelOpts . font . variant || fontVariant ,
10211018 family : commonLabelOpts . font . family || fontFamily ,
10221019 size : commonLabelOpts . font . size || fontSize ,
@@ -1342,7 +1339,6 @@ function createHoverText(hoverData, opts) {
13421339 . call ( Drawing . font , {
13431340 weight : fontWeight ,
13441341 style : fontStyle ,
1345- stretch : fontStretch ,
13461342 variant : fontVariant ,
13471343 family : fontFamily ,
13481344 size : fontSize
@@ -1387,7 +1383,6 @@ function createHoverText(hoverData, opts) {
13871383 color : d . fontColor || contrastColor ,
13881384 weight : d . fontWeight || fontWeight ,
13891385 style : d . fontStyle || fontStyle ,
1390- stretch : d . fontStretch || fontStretch ,
13911386 variant : d . fontVariant || fontVariant
13921387 } )
13931388 . text ( text )
@@ -1950,7 +1945,6 @@ function cleanPoint(d, hovermode) {
19501945 fill ( 'fontColor' , 'htc' , 'hoverlabel.font.color' ) ;
19511946 fill ( 'fontWeight' , 'htw' , 'hoverlabel.font.weight' ) ;
19521947 fill ( 'fontStyle' , 'hty' , 'hoverlabel.font.style' ) ;
1953- fill ( 'fontStretch' , 'hth' , 'hoverlabel.font.stretch' ) ;
19541948 fill ( 'fontVariant' , 'htv' , 'hoverlabel.font.variant' ) ;
19551949 fill ( 'nameLength' , 'hnl' , 'hoverlabel.namelength' ) ;
19561950 fill ( 'textAlign' , 'hta' , 'hoverlabel.align' ) ;
0 commit comments