Sponsored Content
Top Forums Shell Programming and Scripting GnuPlot-area marked by filledcurve Post 302643557 by IMPe on Saturday 19th of May 2012 11:07:36 PM
Old 05-20-2012
GnuPlot-area marked by filledcurve

Hi !

I try to highlight data. therefor i want du emphasize a rectangle area in the background by filledcurves inbetween to limits.

Code:
#Sektor Inden --> Anfang <--> Ende
SIa(x)=212
SIe(x)=252
SHa(x)=64
SHe(x)=122
plot 'PATH/mete.txt' using 1:3 t 'WR' w l lt 3 lw 1 lc rgbcolor "#0000ff", \
    SIa(x) w l lt 3 lw 1 lc rgbcolor "#800080",\
    SIe(x) w l lt 3 lw 1 lc rgbcolor "#800080",\
    SHa(x) w filledcurve above y1=64 l lt 3 lw 1 lc rgbcolor "#800080",\
    SHe(x) w filledcurve below y1=122 l lt 3 lw 1 lc rgbcolor "#800080"

Why do GnuPlot dont take it this way?


Thanks in advance!
IMPe
 

7 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

Moderators area?

. (1 Reply)
Discussion started by: Driver
1 Replies

2. UNIX for Dummies Questions & Answers

Help with gnuplot

Hi, I am a beginner using UNIX, and was wondering how to use gnuplot from UNIX on my pc. I am connected remotely to my work's UNIX server using Secure Shell Client, and gnuplot won't open a new window when I use the plot command. How do I do this? Moreover, is it possible to save things from the... (0 Replies)
Discussion started by: KTTFB64
0 Replies

3. UNIX for Dummies Questions & Answers

file marked unretrievable

Hi When i try to ftp download a file from a Solaris 10 server, it returns the error "is marked unretrievable" how can i get around this to download the file? (2 Replies)
Discussion started by: arielgoldberg
2 Replies

4. SuSE

SLES11 - RAID6 all disks marked as Spare

Hello, After a replacement of the motherboard of my server, all disks belonging to a raid6 are now marked as spare. Is there any way to mark those disks as active and restore the raid6? $ cat /proc/mdstat Personalities : md1 : inactive sda1(S) sdk1(S) sdj1(S) sdi1(S) sdh1(S)... (0 Replies)
Discussion started by: xavix
0 Replies

5. UNIX for Dummies Questions & Answers

Area of a square

I am just starting out with bash scripting. I tried a simple script to find the area of a square and it didnt run. #!/bin/bash #script to find area of a square based on user input if then echo " Usage -$0 x " echo " where x is the dimension of the square " exit 1 n1=$1 ... (2 Replies)
Discussion started by: SnydeMz
2 Replies

6. UNIX for Advanced & Expert Users

Superblock marked dirty

Good morning! I met a problem on a FS with AIX 5.3 It's not possible to mount the FS because of a dirty superblock. I tried few things without success. I need your help to solve my problem guys. Do you have any idea please? Thanks a lot drp01,/home/root # mount /GSPRES/data Replaying... (9 Replies)
Discussion started by: Castelior
9 Replies

7. Web Development

Mysql table is marked as crashed and should be repaired

140312 13:43:54 /usr/libexec/mysqld: Table './***/phpbb_posts' is marked as crashed and should be repaired Its mysqld.log in var/log alot of messages, but before around hour i tried to "repaid table" from within phpmyadmin, but appears it has no effect.. why? How to fix? (1 Reply)
Discussion started by: postcd
1 Replies
canvasLabel(n)							 canvasLabel class						    canvasLabel(n)

__________________________________________________________________________________________________________________________________________________

NAME
canvasLabel - tkpiechart canvas label class SYNOPSIS
package require stooop 4.1 package require switched 2.2 package require tkpiechart 6.6 stooop::new canvasLabel canvas ?options? switched::configure canvasLabelObject ?options? switched::cget canvasLabelObject option stooop::delete canvasLabelObject _________________________________________________________________ DESCRIPTION
The canvasLabel class brings some Tk label widget functionality to the canvas text item, such as a background and a border. The canvasLabel is built with a bullet rectangle on the left side of the text. The relief changes according to the select state, with a traditionally sunken relief when selected. The label has a specific tag, which can be used to retrieve the coordinates of the object or move it, thanks to the canvas facilities. stooop::new canvasLabel canvas ?options? Creates a canvasLabel object in the specified Tk canvas. The canvasLabel object identifier is returned (referred to as canvasLabe- lObject in this document). switched::configure canvasLabelObject ?options? Configures a canvasLabel object or returns all the options with their current values if no options are passed as parameters. switched::cget canvasLabelObject option Returns an option value for the specified canvasLabel object. stooop::delete canvasLabelObject Deletes the specified canvasLabel object. OPTIONS
-anchor value Specifies the anchor position of the rectangle and the text, relative to the positioning point. The behavior is similar to the -anchor option of the canvas text item, except that the rectangle is taken into account. The default is center. -background color Specifies the background color of the bullet rectangle, as in the -fill option of the canvas rectangle item. The default is trans- parent (empty string). -bordercolor color Specifies the border color of the rectangle, as in the -outline option of the canvas rectangle item. The default is black. -borderwidth value Specifies the border width of the rectangle, as in the -width option of the canvas rectangle item. By default, the width is 1 pixel, which is the minimum width. -bulletwidth value Specifies the width of the rectangle placed to the left of the text. Defaults to 10. -font value Specifies the font of the text, as in the -font option of the canvas text item. The default is system dependent. -foreground color Specifies the color of the text, as in the -fill option of the canvas text item. The default is black. -justify value Specifies how to justify the text, as in the -justify option of the canvas text item. The default is left. -minimumwidth value The total label width will not go below the specified value, but may be larger if the label text requires it. -padding value Specifies how much space to leave between the text and the closest rectangle edge. Units are identical to those specified in the canvas COORDINATES manual section. -scale list List of 2 floating point numbers used to set the scaling factor in the x and y axis. Scaling is applied immediately and defaults to 1. -select boolean Sets the label state. -selectrelief value Either flat, raised or sunken. Specifies the 3D effect desired for the text area when the label is selected. -stipple bitmap Specifies the stipple pattern filling the rectangle, as in the -stipple option of the canvas rectangle item. There is no bitmap by default. -text text Specifies the string to be displayed in the text area, as in the -text option of the canvas text item. The default is an empty string. -textbackground color Specifies the color of the text area background. -width value Specifies a maximum line length for the text, as in the -width option of the canvas text item. The default is 0. TAGS
The labeler has the following specific tag (see the canvas manual page ITEM IDS AND TAGS section for more information): o canvasLabel(canvasLabelObject) SEE ALSO
pie, pieBoxLabeler, piePeripheralLabeler KEYWORDS
canvas, labeler, pie, slice COPYRIGHT
Copyright (c) 1995-2004 Jean-Luc Fontaine <jfontain@free.fr> tkpiechart 6.6 canvasLabel(n)
All times are GMT -4. The time now is 06:07 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy