Describe the bug, what's wrong, and what you expected.
When I put the labels, with the font 'arial', the font that shows up is not arial! Also looking through the documentation, it is not arial:
https://docs.pyvista.org/user-guide/
Steps to reproduce the bug.
import pyvista as pv
import numpy as np
import matplotlib.pyplot as plt
pl = pv.Plotter()
n = 10
points = np.zeros((n, 3))
points[:, 0] = -np.arange(n)
pl = pv.Plotter()
labels = [str(i) for i in range(n)]
pl.add_point_labels(points ,labels, point_color='k', point_size=30, always_visible=True, font_family='arial')
pl.render()
pl.show()
Describe the bug, what's wrong, and what you expected.
When I put the labels, with the font 'arial', the font that shows up is not arial! Also looking through the documentation, it is not arial: https://docs.pyvista.org/user-guide/
Steps to reproduce the bug.
System Information
Screenshots
This is the output vs arial