Skip to content

Commit

Permalink
Fix tooltip not showing short signals
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias committed Jun 21, 2022
1 parent e510c72 commit 65b4e29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/charts/CandleChart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ export default defineComponent({
},
tooltip: {
// Hide tooltip - it's already there for longs.
show: false,
// show: false,
},
encode: {
x: colDate,
Expand All @@ -310,11 +310,11 @@ export default defineComponent({
xAxisIndex: 0,
yAxisIndex: 0,
itemStyle: {
// Hide tooltip - it's already there for longs.
color: shortexitSignalColor,
},
tooltip: {
show: false,
// Hide tooltip - it's already there for longs.
// show: false,
},
encode: {
x: colDate,
Expand Down

0 comments on commit 65b4e29

Please sign in to comment.