How to Hide the title in the right/left axis
See original GitHub issueLightweight Charts Version: 3.8.0
Steps/code to reproduce:
chartSeries['rs_up'] = chart.addLineSeries({
title: 'RSUP',
color: '#008000',
lineWidth: 2,
crosshairMarkerVisible: false,
lastValueVisible: false,
priceLineVisible: false,
priceLineLabelVisible: false
});
Actual behavior:
Expected behavior:
Screenshots:
CodeSandbox/JSFiddle/etc link:
Issue Analytics
- State:
- Created a year ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Add or remove titles in a chart - Microsoft Support
Right -click the chart title to format it with options like Fill or Outline. Remove a chart title. Click on the chart. Select...
Read more >Microsoft Excel - How to display or hide chart axes or gridlines
Microsoft Excel - How to display or hide chart axes or gridlines. 13K views 6 years ago. Helpvids. Helpvids. 552 subscribers. Subscribe.
Read more >How can I remove the top and right axis in matplotlib?
To hide the border (aka "spine"): ax.set_frame_on(False) or ax.spines['top'].set_visible(False). To hide the ticks: ax.
Read more >How to hide the Y-Axis Titles in Line Charts with two axes?
There are two way to hide Y axis title. Style panel - Text transparency; Builder panel - Rename left and right Y axis....
Read more >How can I remove the left label from Line and Clus...
I have created a dashboard using Line and Clustered Column chart and other visuals. One of the requirements is to remove the Y-axis...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
If the
title
is not an empty string then the label will be displayed. So you would need to keep that information outside the library and then look it up when you want to generate your tooltip.Yes, thank you for your help, i just added custom properties named title2 in the all series and fetched using options for tooltip. that’s solved my issue.