- ago
In WLD6 environment I use HideVolume for Point and Figure and for normal bars charts but with custom volume.

I can't find the equivalent in WL7? Perhaps I am missing it or perhaps I need to do something with PlotSeries and a parameter.

Thanks
8
1,153
Solved
6 Replies

Reply

Bookmark

Sort
- ago
#1
Marked this topic as #FeatureRequest. Please vote for it on the wishlist page:
https://www.wealth-lab.com/wishlist

For now the Volume pane can be hidden in Preferences > [ ] Show volume pane.
1
Glitch8
 ( 10.92% )
- ago
#2
You'll be able to use the new SetChartDrawingOptions method in Build 14 to hide the volume pane from strategy code.
1
Best Answer
- ago
#3
Did you mean Build 14? I don't see it in B13.
0
Glitch8
 ( 10.92% )
- ago
#4
Yes I meant 14! Edited the post.
0
- ago
#5
CODE:
         ChartDisplaySettings cds = new ChartDisplaySettings();          cds.ShowVolumePane = false;


This does not hide the volume pane. Am I missing something?
0
- ago
#6
Did you read the example to the end?

CODE:
//put these settings into effect SetChartDrawingOptions(cds);
0

Reply

Bookmark

Sort