Disabling "series hover label" #839
-
I was just looking into possibility to disable the "series hover label".. Sorry I have no idea how to describe it better. Here is the picture. Here is the source code var candles = GetCanles();
var plottableCandles = LCConverter.ConvertToPlottalble(candles);
var form = new LCChartForm();
var plot = form.MainPlot;
form.Show();
LiveChartsCore.SkiaSharpView.Axis[] axis = {
new LiveChartsCore.SkiaSharpView.Axis
{
LabelsRotation = 45,
Labeler = value => new DateTime((long)value).ToString("yyyy MMM dd HH mm"),
UnitWidth = TimeSpan.FromMinutes(1).Ticks,
}
};
plot.XAxes = axis;
plot.Series = new ISeries[]
{
plottableCandles
}; the code repo is here just in case: https://github.com/pavlexander/plot_test |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
I'd like to change the size of the font. I'm not sure how to do that. Any idea's? |
Beta Was this translation helpful? Give feedback.
-
Is |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Is
plot.TooltipPosition = LiveChartsCore.Measure.TooltipPosition.Hidden
what you're looking for?