Return-Path: X-Original-To: apmail-incubator-flex-dev-archive@minotaur.apache.org Delivered-To: apmail-incubator-flex-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8CD719AF4 for ; Tue, 17 Jan 2012 10:43:52 +0000 (UTC) Received: (qmail 92879 invoked by uid 500); 17 Jan 2012 10:43:52 -0000 Delivered-To: apmail-incubator-flex-dev-archive@incubator.apache.org Received: (qmail 92778 invoked by uid 500); 17 Jan 2012 10:43:51 -0000 Mailing-List: contact flex-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: flex-dev@incubator.apache.org Delivered-To: mailing list flex-dev@incubator.apache.org Received: (qmail 92770 invoked by uid 99); 17 Jan 2012 10:43:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Jan 2012 10:43:51 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of its.code.in.here@gmail.com designates 209.85.214.47 as permitted sender) Received: from [209.85.214.47] (HELO mail-bk0-f47.google.com) (209.85.214.47) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Jan 2012 10:43:45 +0000 Received: by bkar19 with SMTP id r19so116929bka.6 for ; Tue, 17 Jan 2012 02:43:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=ain9TamYzKwCvvdBaXiUsBGCx01280125eKsJMKl648=; b=V2uRWnEjwu01Ks1c3lToH2vYNO/YIhF4ewfpSpNSfcKYkCrMdbqj0maG04YQPxOIZo CZIq8W0asRDqHDy5wBjE4Gz/rb1mI7BpRKwtr8BdDvpopyqP+FGRRydNALhIxFkjiobT 3JQntFDdfj/FwNikKVoBGzfC4gmH2DHYHgjEA= MIME-Version: 1.0 Received: by 10.204.151.196 with SMTP id d4mr6595431bkw.30.1326797004024; Tue, 17 Jan 2012 02:43:24 -0800 (PST) Received: by 10.205.83.73 with HTTP; Tue, 17 Jan 2012 02:43:23 -0800 (PST) In-Reply-To: References: <008b01ccd4fb$566d1150$034733f0$@davidarno.org> Date: Tue, 17 Jan 2012 11:43:23 +0100 Message-ID: Subject: Re: Flex Charts: Will they improve? From: Dwayne Henderson To: flex-dev@incubator.apache.org Content-Type: multipart/alternative; boundary=0015175cfd7e1d2e2104b6b70059 --0015175cfd7e1d2e2104b6b70059 Content-Type: text/plain; charset=ISO-8859-1 * 4. #horizontal-axis-renderer.axis-lines, #horizontal-axis-renderer.tick-placements, #vertical-axis-renderer.axis-lines, #vertical-axis-renderer.tick-placements { display: none; } On Tue, Jan 17, 2012 at 11:41 AM, Dwayne Henderson < its.code.in.here@gmail.com> wrote: > Thanks a lot everyone for listening! > > I'm just a poor CSS developer, I'm afraid I can't really contribute yet. > All I can do is beg for full CSS support: > > (some of this logic may be a bit off, but I hope y'all understand > nonetheless) > > 1. Positioning items in a row: > > > > > > Oughta be: #column-chart { display: inline; } > > 2. Hiding shadows: > > > > > > Oughta be: #column-chart { box-shadow: none; } > > Or: .drop-shadow { display: none; } > > 3. Hiding grid lines: > > > > > > Oughta be: .grid-lines { display: none; } > > 4. Hiding axis lines and tick placements: > > > showLine="false" tickPlacement="none" /> > > > showLine="false" tickPlacement="none" /> > > > Oughta be: > > #horizontal-axis-renderer.gridlines, > #horizontal-axis-renderer.tick-placements, > #vertical-axis-renderer.gridlines, > #vertical-axis-renderer.tick-placements { display: none; } > > 8. No made up declaration names (make those selectors instead): > > .myAxisStyles { showLine: false; tickPlacement: none; } > > Oughta be: .axis-lines, .tick-placements { display: none; } > > 5. Use real size units: > > mx|DataTip { paddingLeft: 3; paddingTop: 3; } > > Oughta be: .datatip { padding-left: 3px; padding-top: 3px; } > > 7. Support CSS shorthand: > > .datatip { padding: 3px 0 0 3px; } > > > Thanks again! > > --Dwayne > > > On Tue, Jan 17, 2012 at 10:35 AM, David Arno wrote: > >> > From: Dwayne Henderson [mailto:its.code.in.here@gmail.com] >> > Sent: 17 January 2012 00:17 >> > >> > Does anybody know if this will change? >> > Are there any new Flex charting libraries in the making? >> >> +1 to what Roland said. If you feel up to it, get writing them yourself >> and >> submit them. It's the best way of ensuring that a new Flex charting >> library >> gets written. Even if you don't think your skills are up to it, you can >> still help by documenting what you think is wrong with the current ones >> and >> how they could be improved. This may well spur someone else to get >> involved. >> Adobe Flex work isn't just confined to committers (I'm not one after all): >> everyone in the Flex community is encouraged to take part. :) >> >> David. >> >> > --0015175cfd7e1d2e2104b6b70059--