Replies: 5 comments 3 replies
-
Please show your code, and the exception message you are getting, it should be possible. |
Beta Was this translation helpful? Give feedback.
-
What does it mean that you are adding column series to the existing candlestkick series? You need to create separate serie and add both of them to CartesianChart Series property |
Beta Was this translation helpful? Give feedback.
-
Is there an easy way to increase the margins of the max/min values of a y axis? I was looking in the axis class but could not figure it out. |
Beta Was this translation helpful? Give feedback.
-
If I am using this code to create the cartesianChart, what type of point do I use for the Bar/column series to map the x to DateTime and y to a double number? The candlestickseries appears fine but when I add the series ColumnSeries list which has a series of ObservablePoints (double, double), it throws an exception at (X axis line: Labeler = value => new DateTime((long)value).ToString("hh:mm tt")) as I am unable to pass the DateTime as a double through ObservablePoint even when using double.ToOADate() and passing that as the X variable it throws an error. I get the same error when I use ColumnSeries passing a set of DateTimePoints(DateTime, double) for the column which shares the same axis (DateTime) as the candlestick series and I am passing the same Datetime variable to both series however for financial I am passing the datetime via (FinancialPoint(DateTime, (double)highPrice, (double)openPrice, (double)closePrice, (double)lowPrice).
|
Beta Was this translation helpful? Give feedback.
-
Did you ever get a working solution to this with volume bars below the candle sticks? |
Beta Was this translation helpful? Give feedback.
-
Will have the candlesticks in the chart but want to also add a columnseries using the same x axis to indicate the amount of volume during each candlestick. Seems to throw an error when adding the column series to the existing candlestick series.
Beta Was this translation helpful? Give feedback.
All reactions