2020年8月5日水曜日

ipysheetでセルのフォントのサイズや修飾・アライメントの設定をする

ipysheetでセルのフォントのサイズや修飾・アライメントの設定をするには、cellメソッドでstyle引数を指定します。
style引数は辞書でCSSの属性が使用できます。

サンプルコード

以下のサンプルコードをノートブックに張り付けて実行します。
import ipysheet

sheet = ipysheet.sheet()
ipysheet.cell(0, 0, "デフォルト")
ipysheet.cell(0, 1, "イタリック", style={"font-style":"italic"})
ipysheet.cell(0, 2, "180%", style={"font-size":"180%"})
ipysheet.cell(0, 3, "ボールド", style={"font-weight":"bold"})
ipysheet.cell(1, 0, "ゴシック体ABC", style={"font-family":'"MS ゴシック",sans-serif'})
ipysheet.cell(1, 1, "明朝体ABC", style={"font-family":'MS 明朝",serif'})
ipysheet.cell(2, 0, "右寄せ", style={"text-align":'right'})
ipysheet.cell(2, 1, "センタリング", style={"text-align":'center'})
ipysheet.cell(3, 0, "行1\n行2")
ipysheet.cell(3, 1, "下寄せ", style={"vertical-align":'bottom'})
ipysheet.cell(3, 2, "中央", style={"vertical-align":'middle'})

sheet

〇サンプルコードの実行結果画面

関連情報

ipysheetのまとめ

・ipysheetのインストールは、以下の記事を参照してください。
JupyterLabにipysheetをインストールして、スプレッドシートを表示する

・ipysheetのgithubリポジトリ
https://github.com/QuantStack/ipysheet

Ubuntu 20.04にJupyter Labをインストールする(pipenv版)

Raspberry Pi(Raspbian Buster)にJupyter Labをインストールする

0 件のコメント:

コメントを投稿