How to align axis labels for heatmap? #943
Unanswered
mrericrichter
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When using HeatSeries<> to show a heatmap over discretized continuous values, how can I adjust the axis labels alignment so that the labels start at the beginning of a cell instead of the center?
I tried to set the labels alignment property on the axis like
`Axis GetXAxis()
{
var binWidthX = (EndX - BeginX) / BinsX;
but it doesn't show an effect.
I would like to position the axis labels as shown in red:
Beta Was this translation helpful? Give feedback.
All reactions