diff --git a/README.md b/README.md index 35f1045..b4b9615 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +

tkchart

@@ -5,6 +6,7 @@
+ ###
  • tkchart Library is a Python library that simplifies the process of creating line charts in tkinter and customtkinter GUI applications.
  • ## Examples @@ -15,7 +17,7 @@ ## tkchart - 1.2.0 -### you need to install & import package first +### You need to install & import package first * installation * ``` pip install tkchart @@ -25,18 +27,18 @@ * ``` import tkchart ``` - + ## objects * LineChart * Line ## To display data using LineChart you need to do 3 main tasks -1. Create LineChart -2. Create Line -3. Display data +1. Creating a LineChart +2. Creating a Line +3. Display of data
    -# 1 . Create LineChart +# 1 . Creating a LineChart ``` linechart = tkchart.LineChart() @@ -156,6 +158,8 @@ linechart = tkchart.LineChart() - line : ``tkchart.Line`` - state : ``bool`` + + ``` linechart = tkchart.LineChart(master=root, width=800, @@ -342,11 +346,12 @@ linechart.pack() ```
    +


    -# 2 . Create Line +# 2 . Creating a Line ``` line = tkchart.Line() @@ -389,7 +394,7 @@ line = tkchart.Line(master=linechart,

    -# 3 . Display Data +# 3 . Display of Data ``` import customtkinter import tkchart