Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jqplot バーチャートが正しくレンダリングされています。グラフには 2 つの一連のデータがあり、1 つは青色でレンダリングされ、もう 1 つは赤色でレンダリングされます。pointLabels プラグインを有効にしてバーの上にバーの値を出力すると、テキストはデフォルトのページ フォントの色でレンダリングされます。フォントは毎回バーの色を使用したいと思います。
ありがとう。
ポイントラベルには、シリーズに基づいたクラスが与えられているようです。したがって、最初のシリーズのポイントラベルには、というクラスがjqplot-series-0あり、2番目のシリーズにはというjqplot-series-1ようになります。CSSでターゲットを設定するだけで、機能するはずです。
jqplot-series-0
jqplot-series-1
.jqplot-series-0 { color: red; }