Files
zenml/venv/lib/python3.9/site-packages/matplotlib/tests/test_axis.py
Christian Mantha 2ca0b9ef7c star
2026-03-02 19:10:52 -05:00

11 lines
268 B
Python

import numpy as np
import matplotlib.pyplot as plt
from matplotlib.axis import XTick
def test_tick_labelcolor_array():
# Smoke test that we can instantiate a Tick with labelcolor as array.
ax = plt.axes()
XTick(ax, 0, labelcolor=np.array([1, 0, 0, 1]))