Send to chart designer

Discussion of open issues, suggestions and bugs regarding database management and administration tools for MySQL
Post Reply
kaffeburk
Posts: 214
Joined: Mon 29 Jan 2007 08:03

Send to chart designer

Post by kaffeburk » Tue 07 May 2019 12:37

Helllo Devart,

I just updated my DB forge. I found new function: Send to chart designer. But i find no help or instructions about how this works. I created a very simpel table (se below). So i assume its so easy i don't need any instructions. Well its not.

I right click my simple table, and chose "send to chart designer". I select "bar". Now it get strange.

It tells me i have 2 series, but i have 3. The values are wrong, i cant tell what columns is what serie. Pleas describe what this is and how i use it.

Code: Select all

--
-- Create table `diagram`
--
CREATE TABLE diagram (
  id int(11) NOT NULL AUTO_INCREMENT,
  Col1 float DEFAULT NULL,
  col2 float DEFAULT NULL,
  col3 float DEFAULT NULL,
  PRIMARY KEY (id)
)
ENGINE = INNODB,
AUTO_INCREMENT = 4,
AVG_ROW_LENGTH = 5461,
CHARACTER SET utf8,
COLLATE utf8_general_ci;

INSERT INTO diagram VALUES
(1, 10, 10, 20),
(2, 20, 12, 15),
(3, 25, 15, 30);

kaffeburk
Posts: 214
Joined: Mon 29 Jan 2007 08:03

Re: Send to chart designer

Post by kaffeburk » Tue 07 May 2019 13:45

Here is an image showing how it should look.

https://www.dropbox.com/s/0a9yns0do6icf ... t.jpg?dl=0


Post Reply