LcdBarGraph V1.4 bar customization?

Hello,

I'm using LBG with a battery monitor project.

But how do i change what and how it displays?

As default it shows the graph on the top line from start to end.
And the bars are full boxes.

How could i make some changes. For example i would like the bar to be on the second row and maybe shorter. Lets say only the last 5 "boxes".

Or how could i make so that the bar segments grow towards end? They could be 2px tall on the low end and full "box" when on the "full" state.

So how can i alter the graph that it makes?

Please post the code and schematic you have so far as that would help us a lot to help you

I tried to answer myself earlier but seems like my reply did not get trough.

Answering my self that i solved this by doing my own chars. For anyone else who wants "rising" graph char, here you go!

byte yksi[8] = {
  B00000,
  B00000,
  B00000,
  B00000,
  B00000,
  B00000,
  B11111,
};

byte kaksi[8] = {
  B00000,
  B00000,
  B00000,
  B00000,
  B00000,
  B11111,
  B11111,
};

byte kolme[8] = {
  B00000,
  B00000,
  B00000,
  B00000,
  B11111,
  B11111,
  B11111,
};

byte nelja[8] = {
  B00000,
  B00000,
  B00000,
  B11111,
  B11111,
  B11111,
  B11111,
};

byte viisi[8] = {
  B00000,
  B00000,
  B11111,
  B11111,
  B11111,
  B11111,
  B11111,
};


byte kuusi[8] = {
  B00000,
  B11111,
  B11111,
  B11111,
  B11111,
  B11111,
  B11111,
};

byte seiska[8] = {
  B11111,
  B11111,
  B11111,
  B11111,
  B11111,
  B11111,
  B11111,
};