Is there a way to change the size of the dot on the PlotTimeSeries which use the line style dotted?
Rename
Changing the line width should affect the size of the dots.
I incorrectly stated line style dotted, it is plot style Dots which does not have a line width.
You need to change it to PlotTimeSeriesLine so there is a "width" adjustment and a LineStyle.Dotted.
CODE:
PlotTimeSeriesLine(ratio, "QLD/QID Momentum Ratio", "Ratio", WLColor.Maroon, 5, LineStyle.Dotted);
The dotted line is not what I need, it is a dot for/at each bar.
QUOTE:
The dotted line is not what I need
Tell us precisely what you need.
1) Is there going to be a dot above every single bar or just some of the bars?
2) Are all the dots going to be the same size or different sizes?
3) Will the dots be different colors?
4) Will a ToolTip popup message be required for each individual dot to give additional information?
5) Have you considered employing a "Data Panel" to display additional information about each bar you mouse over?
Understand, each discrete object (dots in this case) will slow WL down and increase memory requirements and increase garbage collection. So you want an implementation that minimizes how many discrete objects you place on the Chart. Please consider that before you answer. We don't want your strategy to get really slow.
Also, do you really want to clutter your Chart with a dot above every bar--I wouldn't. I would try to minimize the clutter as much as possible.
This is what I need and what I am doing. It has been coded and tested. Can the dot size be changed and if so how?
PlotTimeSeries(mytimeseries, "mytimeseries_label", "Price", WLColor.Blue, Wealthlab.Core.PlotStyle.Dots);
PlotTimeSeries(mytimeseries, "mytimeseries_label", "Price", WLColor.Blue, Wealthlab.Core.PlotStyle.Dots);
The Dots plot style has a variable dot size that increases as the bar spacing increases.
Your Response
Post
Edit Post
Login is required