Как изменить цвет метки оси x (или y) [маним]

Я новичок в переполнении стека, и я не нашел решения следующей проблемы: я хочу изменить цвет метки оси x (или y) на черный.

Это мой код (и он не работает):

from manimlib.imports import *
from manimlib.Bibli_preda import *
import numpy as np

class Graphx(GraphScene):
    position_graph_o = np.array([-5,-3,0])
    CONFIG = {
        "camera_config":{"background_color":"#ffffff"},
        "x_min": 0,
        "x_max": 400,
        "y_min": 0,
        "y_max": 400,
        "graph_origin": position_graph_o,
        "x_tick_frequency" : 100,
        "y_tick_frequency" : 100,
        "x_labeled_nums" : range(0,500,100),
        "x_axis_label" : "$Temps$",
        "y_axis_height": 5,
        "x_axis_width" : 10,
        "y_axis_label" : "N",
        "x_axis_label_color": "#000000",
        "y_label_color": "#000000",
        "axes_color": "#000000",
        }

Я понимаю: https://ibb.co/vq8FrcW


person masdaf    schedule 16.05.2021    source источник


Ответы (1)