I'm using a Webview in Xamarin to draw an RGraph.Bar.
The user can press a "+" button to manipulate the Graph then Graph is refreshed. The thing is for some reason the Webview is cutting off the labelsAbove the bars.
I was wondering if there's a chance to put labelsAbove in the center of the bar or at the beggining of it so it's not that obvious or... a solution to the WebView cutting the graph (Height)
A few things to try:
marginTop
property. Try setting it to 50 and see how that looks.margin-top
to it:<div style="margin-top: 50px; display: inline-block">
<canvas id="cvs" width="700" height="300"></canvas>
</div>